-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact-us.php
72 lines (63 loc) · 3.52 KB
/
contact-us.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('menubar.inc.php');?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/contact_us.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/w3css/w3.css">
<script src="assets/js/vendor/modernizr-2.8.3.min.js"></script>
<title>Contact Us</title>
</head>
<body?>
<div class="breadcrumb-area gray-bg">
<div class="container">
<div class="row">
<div class="col-12">
<div class="contact-message-wrapper text-center">
<h4 class="contact-title ">CONTACT US</h4>
<div class="contact-message">
<p class=""><?php
echo $_SESSION['c-msg'];
$_SESSION['c-msg'] = " Please fill the below form to send message."; ?>
</p>
<form id="contact-form" action="contact-us-submit.php" method="post">
<div class="row">
<div class="col-lg-4">
<div class="contact-form-style mb-20">
<input name="name" placeholder="Full Name" type="text" required>
</div>
</div>
<div class="col-lg-4">
<div class="contact-form-style mb-20">
<input name="email" placeholder="Email Address" type="email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$" required>
</div>
</div>
<div class="col-lg-4">
<div class="contact-form-style mb-20">
<input name="mobile" placeholder="Mobile" type="tel" pattern="^\d{10}$" required>
</div>
</div>
<div class="col-lg-12">
<div class="contact-form-style mb-20">
<input name="subject" placeholder="Subject" type="text" required>
</div>
</div>
<div class="col-lg-12">
<div class="contact-form-style">
<textarea name="message" placeholder="Message" required></textarea>
<button class="submit btn-style" type="submit">SEND MESSAGE</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<?php include('footer.inc.php'); ?>