-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
117 lines (99 loc) · 5.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>EShopper - Bootstrap Shop Template</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Free HTML Templates" name="keywords">
<meta content="Free HTML Templates" name="description">
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Topbar Start -->
<?php
include("header.php");
include("navbar.php");
?>
<!-- Topbar End -->
<!-- Contact Start -->
<div class="container-fluid pt-5">
<div class="text-center mb-4">
<h1 class="section-title px-5"><span class="px-2">Contact For Any Queries</span></h1>
</div>
<div class="row px-xl-5">
<div class="col-lg-7 mb-5">
<div class="contact-form">
<div id="success"></div>
<form name="sentMessage" id="contactForm" novalidate="novalidate">
<div class="control-group">
<input type="text" class="form-control" id="name" placeholder="Your Name"
required="required" data-validation-required-message="Please enter your name" />
<p class="help-block text-danger"></p>
</div>
<div class="control-group">
<input type="email" class="form-control" id="email" placeholder="Your Email"
required="required" data-validation-required-message="Please enter your email" />
<p class="help-block text-danger"></p>
</div>
<div class="control-group">
<input type="text" class="form-control" id="mobile" placeholder="Mobile"
required="required" data-validation-required-message="Please enter a subject" />
<p class="help-block text-danger"></p>
</div>
<div class="control-group">
<textarea class="form-control" rows="6" id="message" placeholder="Message"
required="required"
data-validation-required-message="Please enter your message"></textarea>
<p class="help-block text-danger"></p>
</div>
<div>
<button class="btn btn-primary py-2 px-4" type="button" onclick="send_message()">Send
Message</button>
</div>
</form>
</div>
</div>
<div class="col-lg-5 mb-5">
<h5 class="font-weight-semi-bold mb-3">Get In Touch</h5>
<div class="col-md-5 agileits_mail_grid_right">
<div class="agile-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14745.724895115729!2d88.31842628715823!3d22.48799850000001!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a0271ad46c7a023%3A0x891165dfda93e2f8!2sSyamaprasad%20Institute%20of%20Education%20and%20Training%20(S.I.E.T)!5e0!3m2!1sen!2sin!4v1700384317911!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
<div class="d-flex flex-column mb-3">
<h5 class="font-weight-semi-bold mb-3">Store 1</h5>
<p class="mb-2"><i class="fa fa-map-marker-alt text-primary mr-3"></i>7, Raja Rammohan Roy Road</p>
<p class="mb-2"><i class="fa fa-envelope text-primary mr-3"></i>comfynest@gmail.com</p>
<p class="mb-2"><i class="fa fa-phone-alt text-primary mr-3"></i>+91745963214</p>
</div>
</div>
</div>
</div>
<!-- Contact End -->
<!-- Footer Start -->
<?php include("inc/footer.html"); ?>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-primary back-to-top"><i class="fa fa-angle-double-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<!-- Contact Javascript File -->
<script src="mail/jqBootstrapValidation.min.js"></script>
<script src="mail/contact.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>