-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcontact.php
executable file
·84 lines (77 loc) · 3.46 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
73
74
75
76
77
78
79
80
81
82
83
84
<?php include('src/functions.php') ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>SpA Pathcare : Contact</title>
<?php include('src/head.php') ?>
</head>
<body>
<?php include('src/preload.php') ?>
<!--=========== BEGIN HEADER SECTION ================-->
<?php include('src/header.php') ?>
<!--=========== END HEADER SECTION ================-->
<?= youAreHere("Contact") ?>
<!--=========== BEGIN Google Map SECTION ================-->
<section id="googleMap">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3281.297314036103!2d-86.74954699999999!3d34.672444999999996!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88626565a94cdb25%3A0x74c206053b6a97c9!2s305+Intergraph+Way%2C+Madison%2C+AL+35758%2C+USA!5e0!3m2!1sen!2sbd!4v1431591462160"
width="100%" height="500" frameborder="0" style="border:0"></iframe>
</section>
<!--=========== END Google Map SECTION ================-->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-7 col-md-7 col-sm-6">
<div class="contact-form">
<div class="section-heading">
<h2>Contact Us</h2>
<div class="line"></div>
</div>
<p>Fill out all required Field to send a Message. Please don't spam,Thank you!</p>
<form class="submitphoto_form" method="post" action="sendmail.php">
<input type="text" class="wp-form-control wpcf7-text" placeholder="Your name" name="nam">
<input type="email" class="wp-form-control wpcf7-email" placeholder="Email address" name="from">
<input type="text" class="wp-form-control wpcf7-text" placeholder="Subject" name="sub">
<textarea class="wp-form-control wpcf7-textarea" cols="30" rows="10"
placeholder="What would you like to tell us" name="mess"></textarea>
<button class="wpcf7-submit button--itzel" type="submit"><i
class="button__icon fa fa-envelope"></i><span>Send Message</span></button>
</form>
</div>
</div>
<div class="col-lg-5 col-md-5 col-sm-6">
<div class="contact-address">
<div class="section-heading">
<h2>Contact Information</h2>
<div class="line"></div>
</div>
<p>Feel free to contact us any moment using any of the details provided below.</p>
<address class="contact-info">
<p><span class="fa fa-home"></span>VIT University
Vellore, TN 632014, <i>India</i></p>
<p><span class="fa fa-phone"></span>9830768030</p>
<p><span class="fa fa-envelope"></span>piyush.bhutoria98@gmail.com</p>
</address>
<h3>Social Media</h3>
<div class="social-share">
<ul>
<li><a href="https://www.facebook.com/imidiotic12"><span class="fa fa-facebook"></span></a>
</li>
<li><a href="https://twitter.com/piyushbhutoria9"><span class="fa fa-twitter"></span></a>
</li>
<li><a href="https://github.com/Piyushhbhutoria"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/piyushh-bhutoria-for-you/"><span
class="fa fa-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=========== Start Footer SECTION ================-->
<?php include('src/footer.php') ?>
<!--=========== End Footer SECTION ================-->
<?php include('src/incfooter.php') ?>
</body>
</html>