1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
<? include('../_init.php')?> <!DOCTYPE html> <html dir="ltr" lang="en-US"> <head> <? include('_head.php');?> </head>
<body class="stretched no-transition">
<!-- Document Wrapper ============================================= --> <div id="wrapper" class="clearfix">
<!-- Header ============================================= --> <? include('_header.php');?><!-- #header end -->
<!-- Page Title ============================================= --> <section id="page-title" class="page-title-dark" style="background-color:#8bc53f;">
<div class="container clearfix"> <h1>Contact Us</h1> <ol class="breadcrumb"> <li><a href="#">Home</a></li> <li class="active">Contact Us</li> </ol> </div>
</section><!-- #page-title end -->
<!-- Content ============================================= --> <section id="content">
<div class="content-wrap"> <div class="container clearfix"> <div class="col_two_third"> <h3 style="margin-bottom:10px;"><span>BEA Bio-Tech Limited</span></h3> <address><strong>Address:</strong><br> Address : Room D2, 15/F., Block 1, Tai Ping Industrial Centre, No. 57 Ting Kok Road, Taipo, N.T., Hong Kong<br> <a href="https://www.google.com.hk/maps/place/%E5%A4%A7%E5%9F%94%E6%B1%80%E8%A7%92%E8%B7%AF57%E8%99%9F%E5%A4%AA%E5%B9%B3%E5%B7%A5%E6%A5%AD%E4%B8%AD%E5%BF%831%E5%BA%A7/@22.4569798,114.1671273,19z/data=!3m1!4b1!4m5!1m2!2m1!1sBlock+1,+Tai+Ping+Industrial+Centre,+No.+57+Ting+Kok+Road,+Taipo,+N.T.,+Hong+Kong!3m1!1s0x34040837d574c0cf:0x5a83156e835da3e6?hl=zh-TW" target="_blank">(View Google Map)</a></address> <abbr title="Phone Number"><strong>Phone:</strong></abbr> +852 3955 9509<br> <abbr title="Fax"><strong>Fax:</strong></abbr> +852 3956 9937<br> <abbr title="Email Address"><strong>Email:</strong></abbr> <a href="mailto:mli@bea-ergofito.com">mli@bea-ergofito.com</a> <div class="divider divider-left"><i class="icon-map-marker"></i></div> </div> <!-- Contact Form ============================================= --> <div class="col_one_third col_last"> <h3>Send us an Email</h3> <? if($_GET['action']=='true'){?> <h3 style="color:#F00; font-size:14px;">Your email had been sent</h3> <? }else if($_GET['action']=='false'){?> <h3 style="color:#F00; font-size:14px;">Your email send fail</h3> <? }?> <form class="nobottommargin" id="contactform" name="contactform" action="../_process.php" method="post"> <input type="hidden" name="action" value="submitContact"/> <input type="hidden" name="lang" value="en"/> <div class="form-process"></div>
<div class="col_full"> <label for="contactform-name">Name <small>*</small></label> <input type="text" id="contactform-name" name="name" value="" class="sm-form-control required" /> </div>
<div class="col_full"> <label for="contactform-phone">Phone</label> <input type="text" id="contactform-phone" name="phone" value="" class="sm-form-control" /> </div>
<div class="col_full"> <label for="contactform-email">Email <small>*</small></label> <input type="email" id="contactform-email" name="email" value="" class="required email sm-form-control" /> </div>
<div class="col_full"> <label for="contactform-message">Message <small>*</small></label> <textarea class="required sm-form-control" id="contactform-message" name="message" rows="6" cols="30"></textarea> </div>
<div class="col_full hidden"> <input type="text" id="contactform-botcheck" name="contactform-botcheck" value="" class="sm-form-control" /> </div>
<div class="col_full"> <button class="button button-3d nomargin" type="submit" id="contactform-submit" name="contactform-submit" value="submit">Submit</button> </div>
</form>
<script type="text/javascript">
$("#contactform").validate({ /*submitHandler: function(form) { $('.form-process').fadeIn(); $(form).ajaxSubmit({ target: '#contact-form-result', success: function() { $('.form-process').fadeOut(); $('#contactform').find('.sm-form-control').val(''); $('#contact-form-result').attr('data-notify-msg', $('#contact-form-result').html()).html(''); SEMICOLON.widget.notifications($('#contact-form-result')); } }); }*/ });
</script> </div><!-- Contact Form End --> </div> </div> </section><!-- #content end -->
<!-- Footer ============================================= --> <? include('_footer.php')?> <!-- #footer end -->
</div><!-- #wrapper end -->
<? include('_footer_scripts.php');?>
</body> </html>
|