-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontactUs.php
117 lines (107 loc) · 4.29 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
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
<?php
include_once 'php/sessions.php';
include_once 'php/home.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Title -->
<title>Dee Store | Contact</title>
<!-- Favicon -->
<link rel="icon" href="img/core-img/favicon.png">
<!-- Core Style CSS -->
<link rel="stylesheet" href="css/core-style.css">
<link rel="stylesheet" href="css/style.css">
<!-- Responsive CSS -->
<link href="css/responsive.css" rel="stylesheet">
<link rel="stylesheet" href="bot/css/chat.css">
</head>
<body>
<?php include_once 'php/header.php'; ?><br><br/>
<div class="contact-page">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-heading">
<div class="line-dec"></div><br>
<h1>Contact Us</h>
</div>
</div>
<br><br/>
<div class="col-md-6">
<div id="map">
<!-- How to change your own map point
1. Go to Google Maps
2. Click on your location point
3. Click "Share" and choose "Embed map" tab
4. Copy only URL and paste it within the src="" field below
-->
<img src="img/bg-img/img113.jpg" frameborder="0" style="border:0" allowfullscreen >
</div>
</div>
<div class="col-md-6">
<div class="right-content">
<div class="container">
<form id="contact" action="php/contactPHP.php" method="post">
<div class="row">
<div class="col-md-6">
<fieldset>
<input name="cont_name" type="text" class="form-control" id="cont_name" placeholder="Your name..." required=""><br>
</fieldset>
</div>
<div class="col-md-6">
<fieldset>
<input name="cont_email" type="text" class="form-control" id="cont_email" placeholder="Your email..." required=""><br>
</fieldset>
</div>
<div class="col-md-12">
<fieldset>
<input name="cont_sub" type="text" class="form-control" id="cont_subject" placeholder="Subject..." required=""><br>
</fieldset>
</div>
<div class="col-md-12">
<fieldset>
<textarea name="cont_msg" rows="6" class="form-control" id="cont_message" placeholder="Your message..." required=""></textarea><br>
</fieldset>
</div>
<div class="col-md-12">
<style>
.button {
background-color: #fec2b0;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
</style>
<fieldset>
<button type="submit" name="submit" id="submit" class="button">Send Message</button><br>
</fieldset>
</div>
<div class="col-md-12">
<div class="share">
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div><br><br>
<?php
include_once 'php/footer.php';
?>
</body>
</html>