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
|
<?php require_once ('webadmin/basic_info.php');
$this_menu_info = get_menu_info(6);
$services_type_info = get_master_type_code("SERVICE_TYPE"); ?>
<!DOCTYPE html> <html dir="ltr" lang="en-US"> <head> <?php require_once("html_head.php") ?>
<script src='https://www.google.com/recaptcha/api.js?hl=en'></script>
<script type="text/javascript"> $(function () { $("#verify_code").click(); }) </script> </head>
<body>
<?php require_once("google_analysis.php"); ?>
<?php require_once("html_header.php") ?>
<section id="content" class="contact_us">
<?php require_once("banner.php") ?>
<div class="container"> <div style="padding-top: 20px;"> <div> <?=$this_menu_info["desc_".$langcode]?> </div>
<div style="border-top: 1px solid #c3c3c3; padding-top: 40px;"></div>
<div> <form action="contact_us_post.php" method="post" name="contact_us" id="contact_us" enctype="multipart/form-data"> <div class="head_title"><?=$this_menu_info["title_".$langcode]?></div>
<div> <p>Please enter your details below to get in touch. Fields marked with * are required.</p> </div>
<div> <select name="enquiry_for"> <?php foreach($services_type_info as $service_type){ echo "<option value='".$service_type["name_".$langcode]." Enquiries'>".$service_type["name_".$langcode]." Enquiries</option>"; } ?> </select>
<p class="required">Name </p> <input type="text" name="name" style="width: 100%;">
<p class="required">Tel </p> <input type="text" name="tel" style="width: 100%;">
<p class="required">E-mail </p> <input type="text" name="email" style="width: 100%;">
<p class="required">Message </p> <textarea name="content" style="width: 100%; height: 150px;"></textarea>
<p class="required">Verification </p> <!--<div class="g-recaptcha" data-theme="light" data-sitekey="<?/*=$google_recaptcha_site_key*/?>"></div>-->
<img src="js/verification_code/captcha/vCodeImage.php?_=1" alt="按圖產生新驗證碼" id="verify_code" name="verify_code" width="150" height="60" border="0" onclick="document.getElementById('verify_code').src='js/verification_code/captcha/vCodeImage.php?' + Math.random();" style="FILTER: wave(add=0,freq=3,lightstrength=50,phase=0,strength=3);cursor:pointer;padding-top: 5px;"/>
<span style="font-size: 12px; color: #808080;">按圖產生新驗證碼</span> <br> <input type="text" name="verification" id="verification" style="width: 100%;"/>
<br><br> <div class="button inline_block" style="color: #ffffff;" onclick="$('#contact_us').submit();">Submit</div> <div class="button inline_block" style="color: #ffffff; margin-left: 10px;" onclick="location.reload();">Reset</div> </div> </div> </div> </div> </section>
<?php require_once("html_footer.php"); ?>
</body> </html>
|