-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoodFeedback.html
More file actions
94 lines (75 loc) · 2.2 KB
/
foodFeedback.html
File metadata and controls
94 lines (75 loc) · 2.2 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Food-Feedback</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="main-area">
<div class="header">
<!-- The header -->
<nav>
<div class="navbar">
<h1>WE VALUE YOUR FEEDBACK</h1>
</div>
</nav>
<p>
Give your feedback on the dining hall today!
</p>
</div>
<br><br>
<!-- Enter the First name -->
<!-- <div class = "firstname">
First Name
<br>
<input type="text" name="Firstname" value="" required>
<br>
<br>
</div> -->
<!-- Enter the First name -->
<label for="First Name">First Name:</label> 
<input type="text" id="FirstName" name="First Name" placeholder="First name">  
<!-- Enter the Last name -->
<label for="Last Name">Last Name:</label> 
<input type="text" id="LastName" name="Last Name" placeholder="Last name">  
<!-- Enter the Email address -->
<label for="Email">Rollins Email Address:</label> 
<input type="text" id="Email" name="Email" placeholder="Email">
<!-- Enter the Last name -->
<!-- <div class = "lastname">
Last Name
<br>
<input type="text" name="Lastname" value="" required>
<br>
<br>
</div> -->
<br>
<br>
<!-- Enter the Email address -->
<!-- <div class = "email">
Rollins Email Address
<br>
<input type="text" id="Email"name="email" placeholder ="Email">
</div> -->
<br><br>
<!-- Enter the feedback -->
<div class = "feedback">
Please Enter Your Feedback!
<br>
<textarea id="freeform" name="Feedback" rows="4" cols="50">Enter text here...
</textarea>
<br><br>
<!-- Submit Button -->
<!--<button class="button button1">Submit </button>-->
<form action = "https://ba130874-111b-4aa8-b236-89bbd4ba36ff-00-16l6537n7xy4i.spock.repl.co/">
<button class = "button button1">
Submit
</button>
</form>
</div>
<script src="script.js"></script>
</body>
</div>
</html>