-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactUs.php
82 lines (76 loc) · 2.79 KB
/
contactUs.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink to fit= no">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" href="bootstrap/css/main.css" />
</head>
<body background="pictures/random/contactUsBg.jpg">
<!--navigation bar-->
<?php include 'header.php'; ?>
<div class="container text-light">
<div class="row mt-2">
<div class="col-md-8">
<div>
<h1>Contact Us</h1>
<p>We are happy to answere any questions you have or provide you with an estimate. Just send us a message in the form below with any questions you may have.</p>
</div>
<div>
<form method="POST" action="thankUContact.php">
<div class="form-group pt-3">
<label for="name">Name:</label>
<input type="text" name="name" id="name" class="form-control" placeholder="Name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" name="email" id="email" class="form-control" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="phone">Phone:</label>
<input type="tel" name="phone" id="phone" class="form-control" placeholder="Phone Number" required>
</div>
<div class="form-group">
<label for="subject">Subject:</label>
<input type="text" name="subject" id="subject" class="form-control" placeholder="Write the subject here" required>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea name="message" id="message" class="form-control" placeholder="Write your message here" required></textarea>
</div>
<div class="form-group pt-2">
<input type="submit" class="form-control btn btn-success" name="sendComplain" value="Send Message">
</div>
</form>
</div>
</div>
<div class="col-md-4 my-auto pl-5">
<div>
<h5 class="text-danger"><u><strong>Email</strong></u></h5>
<p><mark><em>mercado@gmail.com</em></mark></p>
</div>
<div>
<h5 class="text-danger"><u><strong>Phone</strong></u></h5>
<p><mark><em><a href="tel:+88017********">017********</a></em></mark></p>
</div>
<div>
<h5 class="text-danger"><u><strong>Location</strong></u></h5>
<p><mark><em>House No 5,
Road No 6,
Block B,
Nikeon Housing Society,
Dhaka,
Bangladesh</em></mark></p>
</div>
<img src="pictures/random/contactUs.jpg" class="img-fluid pt-5">
</div>
</div>
</div>
<?php include 'footer.php' ; ?>
<!--scripts-->
<script src="bootstrap/js/jquery.min.js"></script>
<script src="bootstrap/js/popper.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>