/var/www/hkosl.com/securexpert/tc/contacts.php


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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<?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>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <meta name="author" content="SemiColonWeb" />
    <link rel="stylesheet" href="../css/font-icons.css" type="text/css" />
    <link rel="stylesheet" href="../css/style.css" type="text/css" />
    <link rel="shortcut icon" href="../img/headLogo.png">

    <script src="http://maps.google.com/maps/api/js" type="text/javascript"></script>
    <script>
      // In the following example, markers appear when the user clicks on the map.
      // Each marker is labeled with a single alphabetical character.
      var labels = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
      var labelIndex = 0;

      function initialize() {
        var bangalore = { lat: 22.315832, lng:114.216376 }; 
        var map = new google.maps.Map(document.getElementById('map'), {
          zoom: 18,
          center: bangalore
        });

        // This event listener calls addMarker() when the map is clicked.
        google.maps.event.addListener(map, 'click', function(event) {
          addMarker(event.latLng, map);
        });

        // Add a marker at the center of the map.
        addMarker(bangalore, map);
      }

      // Adds a marker to the map.
      function addMarker(location, map) {
        // Add the marker at the clicked location, and add the next-available label
        // from the array of alphabetical characters.
        var marker = new google.maps.Marker({
          position: location,
          label: labels[labelIndex++ % labels.length],
          map: map
        });
      }

      google.maps.event.addDomListener(window, 'load', initialize);
    </script>


    <title>SecurExpert</title>
</head>

<body>

    <div class="body_container">

        <!-- header -->
        <div class="header">
            <div class="logo fl"><a href="index.html"><img src="../img/logo.png"></a></div>
            <div class="nav fr">
                <ul>
                    <li><a href="index.html">主頁</a></li>
                    <li><a href="services.html">服務及產品</a></li>
                    <li><a href="products.html">產品項目</a></li>
                    <li><a href="clients.html">客戶概覽</a></li>                    
                    <li class="active"><a href="contacts.html">聯絡我們</a></li>
                    <li class="en"><a href="../en/contacts.html">ENG</a></li>
                </ul>
            </div>
            <div class="clear"></div>
        </div>
        <!-- end header -->
        
        <div class="clear"></div>

        <!-- google map -->
        <div id="map"></div>
        <!-- end of map -->
        
        <!-- grid contacts -->
        <div class="white_box">
            <div class="contact_data">
                <img src="../img/contact_01.png">
                <div class="data">
                    香港九龍觀塘觀塘道334-336號<br>KT336四樓
                </div>
            </div>
            <div class="contact_data">
                <img src="../img/contact_02.png">
                <div class="data">
                    電話: +852 3610 2111
                </div>
            </div>
            <div class="contact_data">
                <img src="../img/contact_03.png">
                <div class="data">
                    傳真: +852 2318 0244
                </div>
            </div>
            <div class="contact_data">
                <img src="../img/contact_04.png">
                <div class="data">
                   sales@securexpert.com.hk
                </div>
            </div>
            <div class="clear"></div>

            <!-- form -->

            <div class="contact_form_container">
                <div class="enquiry_about">
                    如閣下有<span class="colorBlue">任何查詢</span>,歡迎留言
                </div>

                <div class="contact_form">
                    <form action="../contact_process.php" method="post" accept-charset="UTF-8">
                    <div class="row">
                        <div class="form_03">
                            <input type="text" name="name" placeholder="姓名" class="zh">
                        </div>
                        <div class="form_03">
                            <input type="text" name="tel" placeholder="電話" class="zh">
                        </div>
                        <div class="form_03">
                            <input type="text" name="email" placeholder="電子郵件" class="zh">
                        </div>
                        <div class="form_full">
                            <textarea placeholder="留言" name="content" class="zh"></textarea>
                        </div>
                        <div class="form_03" id="captcha">
                            <?php
                            
echo Securimage::getCaptchaHtml();
                            
?>
                        </div>
                        <div class="form_full textRight mt_30">
                            <button type="submit" class="zh">立即發送</button>
                        </div>
                        <div class="clear"></div>
                    </div>
                    </form>
                </div>


            </div>

            <!-- end of contact form -->


        </div>
        <!-- grid -->



        
    

        

        <footer>
            <div class="footer_name">
                <div class="en">SecurExpert Solutions Limited</div><br />
                <div class="zh">新盛保安服務有限公司</div>                
            </div>

            <div class="clear"></div>

            <div class="footer_info">
                <div class="contacts en">
                    <img src="../img/footer_mail.png"> Email : <a href="mailto:sales@securexpert.com.hk">sales@securexpert.com.hk</a> &nbsp;&nbsp;
                    <img src="../img/footer_phone.png"> Tel : 3610 2111 &nbsp;&nbsp;
                    <img src="../img/footer_fax.png"> Fax : 2318 0244
                </div>
                <div class="copyrights">Copyrights © 2018 新盛保安服務有限公司 版權所有 不得轉載</div>
                <div class="clear"></div>
            </div>   
            
        </footer>
        



    </div>


    <!-- External JavaScripts
    ============================================= -->
    <script type="text/javascript" src="../js/jquery.js"></script>


    <script src="../js/script.js"></script>
</body>

</html>