-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.php
61 lines (53 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="scripts/jquery-3.5.1.min.js"></script>
<meta charset="UTF-8" />
<link rel="shortcut icon" href="images/shirtlogo.png" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/style.css" />
<script src="scripts/jquery-3.5.1.min.js"></script>
<title>Contact Us - Chapalang Clothes</title>
</head>
<body>
<!-- ----------------------------------- TOP-BAR ----------------------------------- -->
<?php include "includes/storetopbar.php"; ?>
<!-- ----------------------------------- TOP-BAR ----------------------------------- -->
<!-- ----------------------------------- MODAL ----------------------------------- -->
<!-- ----------------------------------- MODAL ----------------------------------- -->
<div class="body-wrapper">
<div></div>
<!-- ----------------------------------- BODY ----------------------------------- -->
<div class="content-wrapper container card-generic about-us">
<h1>Contact Us</h1>
<hr>
<form action="contact.php" method="post" id="contact-form">
<div class="form-input-group">
<label for="name">Name</label>
<input type="text" name="name" id="name" placeholder="John Doe">
</div>
<div class="form-input-group">
<label for="email">Email</label>
<input type="text" name="email" id="email" placeholder="[email protected]">
</div>
<div class="form-input-group">
<label for="message">Message</label>
<textarea name="message" id="message" placeholder="Your message here..."></textarea>
</div>
<div class="form-input-group text-center">
<input type="submit" value="Submit" class="w-2">
</div>
</form>
</div>
</div>
<!-- ----------------------------------- BODY ----------------------------------- -->
<!-- ----------------------------------- FOOTER ----------------------------------- -->
<?php include "includes/footer.php" ?>
<!-- -----------------------------------FOOTER----------------------------------- -->
</div>
</body>
<script src="scripts/main.js"></script>
<?php include "includes/store_scripts.php"; ?>
<script src="scripts/search_bar.js"></script>
<script src="scripts/contact_page.js"></script>
</html>