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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>Shipvago - Contact Us</title> <meta name="keywords" content="Plus One ,plusone , PlusOne"> <meta name="description" content="The 1st training institute in HK approved by CAD of HKSAR Government to conduct both DGR Training (Category. 1, 3, 4 & 5) and RAR Security Training courses, IATA Accredited Training School"> <!-- css --> <?php include 'inc/headlinks.php';?> <!-- js --> <?php include 'inc/link-js.php';?>
<script> window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); } gtag('js', new Date());
gtag('config', 'UA-178674315-1'); </script>
</head>
<body>
<!-- header --> <?php include 'inc/navbar.php';?> <!-- end of header-->
<!-- breadcrumb --> <section class="subWrapper grayBgColor pb-0"> <div class="breadcrumbWrapper"> <a href="index.php" class=""> Home</a> / <span class="blueFont">Contact Us</span> </div> </section>
<section class="mainWrapper">
<div class="row align-items-center align-items-stretch">
<div class="col-lg-8"> <!-- <h4>Science and Technology Ave W, Pak Shek Kok</h4> --> <ul class="iconList"> <li><i class="fas fa-map-marker-alt"></i> Unit 1212-1213, 12/F, Building 19W, Hong Kong Science Park, Pak Shek Kok, NT, Hong Kong </li> <li><i class="fas fa-phone"></i> +852 2162-5161 </li> <li><i class="fas fa-envelope"></i> <a href="mailto:Info@cairs.hk" target="_blank">info@Shipvago.hk</a> </li> </ul>
<hr>
<form id="contact-form" method="post" action="contact_controler.php" role="form">
<div class="messages"></div> <div class="row"> <div class="col-md-12"> <p class="h4">Contact us</p> </div> <div class="col-md-6"> <div class="form-group"> <label for="contactName">Name</label> <input type="text" class="form-control" id="contactName" name="name" required="required" data-error="Name is required." aria-describedby="contactName" placeholder="Please enter your Name">
<div class="help-block with-errors"></div> </div> </div> <div class="col-md-6"> <div class="form-group"> <label for="contactEmail">Email</label> <input type="email" class="form-control" id="contactEmail" name="email" required="required" data-error="Valid email is required." aria-describedby="contactEmail" placeholder="Please enter your email"> <div class="help-block with-errors"></div> </div> </div>
<div class="col-md-12"> <div class="form-group"> <label for="contactTitle">Title</label> <input type="text" class="form-control" id="contactTitle" name="title" required="required" data-error="Please enter your Title" aria-describedby="contactTitle" placeholder="Please enter your title"> <div class="help-block with-errors"></div> </div> <div class="form-group"> <label for="contactMessage">Message</label> <textarea class="form-control" id="contactMessage" name="message" rows="3" required="required" data-error="Please, leave us a message."></textarea> <div class="help-block with-errors"></div> </div> <fieldset class="mt-4 mb-4"> <div class="captchInput">
<div class="g-recaptcha" id="recaptcha" data-callback="verifyRecaptchaCallback" data-expired-callback="expiredRecaptchaCallback" data-sitekey="6LdT5M8ZAAAAAP0_7cMIlj924GJdEf8nD0rT0ndC"></div> <input class="form-control d-none" data-recaptcha="true" required data-error="Please complete the Captcha"> <div class="help-block with-errors"></div>
</div>
</fieldset> <button type="submit" class="btn btn-primary" value="Send message">Send Message</button>
</div> </div> </form> </div> <div class="col-lg-4"> <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3688.0607270431815!2d114.20726446553127!3d22.426740043959267!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404094b52f9cebf%3A0x8da07fbe6b29a131!2sBuilding%2019W!5e0!3m2!1sen!2shk!4v1601259531122!5m2!1sen!2shk" width="100%" height="450" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</div> </section>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer.php';?>
<script type="text/javascript" src='https://www.google.com/recaptcha/api.js?hl=tc'></script>
<!-- custom JS --> <script>
</script> </body>
</html>
|