-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
110 lines (104 loc) · 3.43 KB
/
contact.html
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
<!DOCTYPE html>
<html>
<head>
<title>Contact Us</title>
<link rel="stylesheet" type="text/css" href="navbar.css" />
<link rel="stylesheet" type="text/css" href="footer.css" />
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<link href="http://fonts.googleapis.com/css?family=Cookie" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" type="text/css" href="contact_styles.css" />
<script type="text/javascript" src="contact_script.js"></script>
</head>
<body>
<div class="first-screen">
<nav class="menu-container">
<input type="checkbox" aria-label="Toggle menu" />
<span></span>
<span></span>
<span></span>
<a href="#" class="menu-logo">
<img src="images/image-removebg-preview.png" alt="My Awesome Website"/>
</a>
<div class="menu">
<ul>
<li>
<a href="customer.html">
Home
</a>
</li>
<li>
<a href="customer_cuisine.html">
Menu
</a>
</li>
<li>
<a href="customer_cart.html">
Cart
</a>
</li>
<li>
<a href="customer_order_history.html">
Orders
</a>
</li>
</ul>
<ul>
<li>
<a href="index.html">
Sign Out
</a>
</li>
</ul>
</div>
</nav>
</div>
<h1>Contact Us</h1>
<form name="myForm" action="thankyou1.html" onsubmit="return validateForm()" method="post">
<table class="form-style">
<tr>
<td>
<label>
Your name <span class="required">*</span>
</label>
</td>
<td>
<input type="text" name="name" class="long"/>
<span class="error" id="errorname"></span>
</td>
</tr>
<tr>
<td>
<label>
Your email address <span class="required">*</span>
</label>
</td>
<td>
<input type="email" name="email" class="long"/>
<span class="error" id="erroremail"></span>
</td>
</tr>
<tr>
<td>
<label>
Message <span class="required">*</span>
</label>
</td>
<td>
<textarea name="message" class="long field-textarea"></textarea>
<span class="error" id="errormsg"></span>
</td>
</tr>
<tr>
<td></td>
<td>
<center>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</center>
</td>
</tr>
</table>
</form>
</body>
</html>