-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfeedback.html
47 lines (47 loc) · 1.56 KB
/
feedback.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="global-navbar">
<ul id="menubaritems">
<li class="menubarblocks" ><a href="index.html">Home</a></li>
<li class="menubarblocks" ><a href="fridgelist.html">Fridge List</a></li>
<li class="menubarblocks" ><a href="freezerList.html">Freezer List</a></li>
<li class="menubarblocks" ><a href="feedback.html">Feedback</a></li>
<li class="menubarblocks"><a href="aboutUs.html">About Us</a></li>
</ul>
</div>
<div class="container">
<h1>Your Feedback</h1>
<div id="userDetailForm">
<form action="backend.php">
<div>
Name : <input type="text" name="FirstName" id="">
</div>
<br>
<div>
Surname: <input type="text" name="LastName" id="">
</div>
<br>
<div>
Email : <input type="email" name="email" id="">
</div>
<br>
<div>
Login PIN: <input type="password" name="loginPin" id="">
</div>
<br>
<div>
<input type="submit" value="Submit">
</div>
<br>
</form>
</div>
</div>
</body>
</html>