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
130
131
132
133
134
135
136
137
|
<?php require_once dirname(__DIR__). '/configure.php'; require_once dirname(__DIR__). '/vendor/dapphp/securimage/securimage.php'; ?><!DOCTYPE html> <html dir="ltr" lang="zh-HK"> <head> <?php include 'inc/metahead.php';?> <title>联络我们 | 大湾区杰出女企业家奖2019</title> </head>
<body class="stretched">
<!-- Document Wrapper ============================================= --> <div id="wrapper" class="clearfix">
<!-- Header ============================================= --> <?php include 'inc/header.php';?>
<section id="page-title" style="background-image: url('../images/myimg/page_banner_02.jpg?v=2019');" class="background-title">
<div class="container clearfix"> <h1>联络我们</h1> <ol class="breadcrumb"> <li><a href="#">主页</a></li> <li class="active">联络我们</li> </ol> </div>
</section>
<!-- Content ============================================= --> <section id="content">
<div class="bg_section_cover" style="padding-top:30px; padding-bottom:0;background-image: url('../images/myimg/bridge_bg.jpg');">
<div class="container clearfix">
<!-- Postcontent ============================================= --> <div class="postcontent nobottommargin">
<h3>查询</h3>
<div class="contact-widget">
<div class="contact-form-result"></div>
<form action="contact_process.php" method="post" accept-charset="UTF-8" class="nobottommargin" id="contactform" name="contactform">
<div class="form-process"></div>
<div class="col_one_third"> <label for="template-contactform-name">姓名 <small>*</small></label> <input type="text" id="contactform-name" name="contactform-name" value="" class="sm-form-control required" /> </div>
<div class="col_one_third"> <label for="template-contactform-email">电子邮件 <small>*</small></label> <input type="email" id="contactform-email" name="contactform-email" value="" class="required email sm-form-control" /> </div>
<div class="col_one_third col_last"> <label for="template-contactform-phone">电话</label> <input type="text" id="contactform-phone" name="contactform-phone" value="" class="sm-form-control" /> </div>
<div class="clear"></div>
<div class="col_two_third"> <label for="template-contactform-subject">主题 <small>*</small></label> <input type="text" id="contactform-subject" name="contactform-subject" value="" class="required sm-form-control" /> </div>
<div class="clear"></div>
<div class="col_full"> <label for="template-contactform-message">信息 <small>*</small></label> <textarea class="required sm-form-control" id="contactform-message" name="contactform-message" rows="6" cols="30"></textarea> </div>
<div class="col_full"><?php echo Securimage::getCaptchaHtml(); ?><div class="clear"></div> </div>
<div class="col_full"> <button class="button button-3d nomargin" type="submit" id="contactform-submit" name="contactform-submit" value="submit">传送信息</button> </div> </form> </div>
</div><!-- .postcontent end -->
<!-- Sidebar ============================================= --> <div class="sidebar col_last " style="line-height:2;"> <strong>电话 :</strong> (852) 2320 3620 / (852) 3698 8024<br> <strong>电子邮件 :</strong> info@gba-owea.com<br> <strong>网址 :</strong> www.gba-owea.com
</div><!-- .sidebar end -->
</div>
</div>
</section><!-- #content end -->
<?php include 'inc/footer.php';?>
</div><!-- #wrapper end -->
<!-- Go To Top ============================================= --> <div id="gotoTop" class="icon-angle-up"></div>
<!-- External JavaScripts ============================================= --> <script type="text/javascript" src="../js/jquery.js"></script> <script type="text/javascript" src="../js/plugins.js?v=1.22"></script>
<!-- Footer Scripts ============================================= --> <script type="text/javascript" src="../js/functions.js?v=1.22"></script>
<script type="text/javascript"> $('nav ul > li.lv01:nth-child(8)').addClass('current'); </script>
</body> </html>
|