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
|
<?php $page_setting['title'] = __('Contacts') . ' | ' . __('GBA Outstanding Women Entrepreneur Awards {%year%}', ['year' => $page_setting['year']]); ?> <?php include_once('templates/top.php'); ?>
<section id="page-title" style="background-image: url('<?php echo assets_url('main/img/content/press/lg_backdrop_02.jpg'); ?>');" class="background-title"> <div class="container clearfix"> <h2 class="colorFFF m0"><?php echo __('Contacts'); ?></h2> <ol class="breadcrumb"> <li><a href="#"><?php echo __('Home'); ?></a></li> <li class="active"><?php echo __('Contacts'); ?></li> </ol> </div> </section>
<!-- Content start --> <section id="content"> <div class="bg_section_cover" style="padding-top:30px; padding-bottom:0;background-image: url('<?php echo assets_url('main/img/content/press/bridge_bg.jpg'); ?>');"> <div class="container clearfix">
<!-- Postcontent ============================================= --> <div class="postcontent nobottommargin">
<h3><?php echo __('ENQUIRY'); ?></h3>
<div class="contact-widget">
<div class="contact-form-result"></div>
<?php echo form_open(front_url('contact_us/email'), 'class="nobottommargin" id="contactform" name="contactform"'); ?>
<div class="form-process"></div>
<div class="col_one_third"> <label for="template-contactform-name">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">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">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">Subject <small>*</small></label> <input type="text" id="contactform-subject" name="contactform-subject" value="" class="required sm-form-control" /> </div>
<!--<div class="col_one_third col_last"> <label for="template-contactform-service">Services</label> <select id="template-contactform-service" name="template-contactform-service" class="sm-form-control"> <option value="">-- Option --</option> </select> </div>-->
<div class="clear"></div>
<div class="col_full"> <label for="template-contactform-message">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">Send Message</button> </div>
</form> </div>
</div><!-- .postcontent end -->
<!-- Sidebar ============================================= --> <div class="sidebar col_last " style="line-height:2;"> <strong>Tel :</strong> (852) 2320 3620 / (852) 3698 8024<br> <strong>Mail :</strong> info@gba-owea.com<br> <strong>Web :</strong> www.gba-owea.com </div><!-- .sidebar end -->
</div> </div> </section> <!-- Content end -->
<?php include_once('templates/bottom.php'); ?> <script type="text/javascript"> $('nav ul > li.lv01:nth-child(8)').addClass('current'); </script>
|