-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
100 lines (90 loc) · 3.66 KB
/
Copy pathforms.html
File metadata and controls
100 lines (90 loc) · 3.66 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
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel = "stylesheet" href = "style.css">
<script src="form.js"></script>
<style>
.checked {
color: gold;
}
.form{
font-family:'Times New Roman', Times, serif
}
.form *{
box-sizing: border-box;
line-height:1.5;
}
</style>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Survey</title>
</head>
<body>
<div id="layout">
<aside>
<h1 style="margin-left: 10px;">Contents</h1>
<div id="sidebar">
<a href="index.html" class="section">Home</a>
<a href="map.html" class="section">Map</a>
<a href="forms.html" class="section">User Survey</a>
<a href="about.html" class="section">About</a>
</div>
</aside>
<div id="content" style="padding:10px">
<h1>Rate Your Experience!</h1>
<p style = "color: red;">Your name and ID are kept anonymous and your feedback</p>
<p style = "color: red">can be seen on all individuals'(who's RideShare IDs are</p>
<p style = "color: red">entered) personal RideShare Homepage.</p>
<!--later maybe add hover and click stars-->
<div class = "star-widget">
<span class="fa fa-star fa-2x checked"></span>
<span class="fa fa-star fa-2x checked"></span>
<span class="fa fa-star fa-2x checked"></span>
<span class="fa fa-star fa-2x checked"></span>
<span class="fa fa-star fa-2x checked"></span>
</div>
<br>
<form class = "form" action = "data.html" method = "get">
<label>Name:</label>
<input type = "text" id = "name" name = "name" required>
<br><br>
<label>Enter your RideShare ID:</label>
<input type = "uid" id = "uid" name = "uid" required>
<br><br>
<label>Enter the names of your RideShare buddies:</label>
<br>
<input type = "text" id = "pname" name = "pname" required>
<br><br>
<label>Enter the RideShare ID(s) of RideShare buddies:</label>
<br>
<input type = "pid" id = "pid" name = "pid" required>
<br><br>
<label>Select your perspective:</label>
<select id = "pers">
<option value = "driver">Driver</option>
<option value = "passenger">Passenger</option>
</select>
<br><br>
<label>Rating:</label>
<select name = "rate" id = "rate">
<option value = "one">One Star</option>
<option value = "two">Two Star</option>
<option value = "three">Three Star</option>
<option value = "four">Four Star</option>
<option value = "five">Five Star</option>
</select>
<br><br>
<label>Additional Comments/Feedback/Suggestions: </label>
<br>
<textarea id = "feedback" name = "feedback"></textarea>
<br>
<input type="submit" value="Submit">
<!-- <button onclick=surveyInput()>Submit</button> -->
</form>
</div>
</div>
</body>
<footer>
</footer>
</html>