-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
72 lines (67 loc) · 2.89 KB
/
contact.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
<?php include 'header.php';?>
<!-- Content -->
<div id="content" >
<!-- Contact Us -->
<section class="p-t-b-150"style="background-image:url('images/contactus.jpg');background-repeat: no-repeat;background-size: 100%;" >
<!-- CONTACT FORM -->
<div class="container" >
<!-- Tittle -->
<div class="heading-block">
<h4 style="font-weight:500;">GET IN TOUCH</h4>
<hr>
<span>Send your Feedback</span> </div>
<div class="contact">
<div class="contact-form">
<!-- FORM -->
<form role="form" id="contact_form" class="contact-form" method="post" onSubmit="return false">
<div class="row">
<div class="col-md-6">
<ul class="row">
<li class="col-sm-12">
<label>
<input type="text" class="form-control" name="name" id="name" placeholder="*Name">
</label>
</li>
<li class="col-sm-12">
<label>
<input type="text" class="form-control" name="email" id="email" placeholder="*Email">
</label>
</li>
<li class="col-sm-12">
<label>
<input type="text" class="form-control" name="company" id="company" placeholder="Phone">
</label>
</li>
</ul>
</div>
<div class="col-md-6">
<ul class="row">
<li class="col-sm-12">
<label>
<input type="text" class="form-control" name="website" id="website" placeholder="Department">
</label>
</li>
<li class="col-sm-12">
<label>
<textarea class="form-control" name="message" id="message" rows="5" placeholder="*Message"></textarea>
</label>
</li>
<li class="col-sm-12 no-margin">
<button type="submit" value="submit" class="btn" id="btn_submit" onClick="location.href='index.php'">SEND MESSAGE</button>
</li>
</ul>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- MAP -->
<section class="map-block margin-top-100">
<div class="map-wrapper" id="map-canvas" data-lat="23.740051" data-lng="90.371239" data-zoom="13" data-style="1"></div>
<div class="markers-wrapper addresses-block"> <a class="marker" data-rel="map-canvas" data-lat="23.740051" data-lng="90.371239" data-string="Medical Hospital"></a> </div>
</section>
</div>
<!-- Footer -->
<?php include 'footer.php';?>