-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfeedback.html
More file actions
146 lines (146 loc) · 7.56 KB
/
feedback.html
File metadata and controls
146 lines (146 loc) · 7.56 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html>
<head>
<title>Feedback</title>
<meta name="viewport" content="width=device-width">
<meta name="charset" content="utf-8">
<link rel="icon" type="image/png" href="static/images/hub.jpg">
<link rel="apple-touch-icon" type="image/png" href="static/images/hub.jpg">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap" rel="stylesheet">
<link href="static/css/feedback.css" rel="stylesheet">
<script src="static/js/jquery.min.js"></script>
<script type="text/javascript" src="static/js/feedback.js"></script>
</head>
<body>
<!--hero container-->
<div class="hero">
<div class="hero--container">
<img src="static/images/hub.jpg" class="logo">
<a href="/">
<h1 class="one">Coding Hub</h1>
</a>
</div>
<div class="main">
<div class="form-container">
<h2 style="font-size: 30px;text-align: center;padding-top: 20px;margin-bottom:10px">Feedback</h2>
<p style="padding-left:35px;font-weight: 600;text-decoration:underline;"> Please provide your feedback below: </p>
<form role="form" id="testform">
<hr>
<div class="row">
<div class="form-group">
<label>How do you rate your overall experience?</label>
<br>
<span class="poor">Not satisfactory</span><span class="excellent">Highly satisfied</span>
<p>
<label class="radio-inline">
<input type="radio" name="Experience" id="radio_experience" value="1" >
1
</label>
<label class="radio-inline">
<input type="radio" name="Experience" id="radio_experience" value="2" >
2
</label>
<label class="radio-inline">
<input type="radio" name="Experience" id="radio_experience" value="3" >
3
</label>
<label class="radio-inline">
<input type="radio" name="Experience" id="radio_experience" value="4" >
4
</label>
<label class="radio-inline">
<input type="radio" name="Experience" id="radio_experience" value="5" >
5
</label>
<label class="radio-inline">
<input type="radio" name="Experience" id="radio_experience" value="6" >
6
</label>
<label class="radio-inline">
<input type="radio" name="Experience" id="radio_experience" value="7" >
7
</label>
<label class="radio-inline">
<input type="radio" name="Experience" id="radio_experience" value="8" >
8
</label>
<label class="radio-inline">
<input type="radio" name="Experience" id="radio_experience" value="9" >
9
</label>
<label class="radio-inline">
<input type="radio" name="Experience" id="radio_experience" value="10" >
10
</label>
</p>
</div>
</div>
<hr>
<div class="row">
<div class="form-group">
<label>How was the user interface?</label>
<br>
<span class="poor">Do not like</span><span class="excellent">Liked very much</span>
<p>
<label class="radio-inline">
<input type="radio" name="Interface" id="radio_Interface" value="1" >
1
</label>
<label class="radio-inline">
<input type="radio" name="Interface" id="radio_Interface" value="2" >
2
</label>
<label class="radio-inline">
<input type="radio" name="Interface" id="radio_Interface" value="3" >
3
</label>
<label class="radio-inline">
<input type="radio" name="Interface" id="radio_Interface" value="4" >
4
</label>
<label class="radio-inline">
<input type="radio" name="Interface" id="radio_Interface" value="5" >
5
</label>
<label class="radio-inline">
<input type="radio" name="Interface" id="radio_Interface" value="6" >
6
</label>
<label class="radio-inline">
<input type="radio" name="Interface" id="radio_Interface" value="7" >
7
</label>
<label class="radio-inline">
<input type="radio" name="Interface" id="radio_Interface" value="8" >
8
</label>
<label class="radio-inline">
<input type="radio" name="Interface" id="radio_Interface" value="9" >
9
</label>
<label class="radio-inline">
<input type="radio" name="Interface" id="radio_Interface" value="10" >
10
</label>
</p>
</div>
</div>
<hr>
<div class="row">
<label for="comments"> Comments:</label>
<div class="form-group">
<textarea name="Comments" id="comments" placeholder="Your Suggestions are valuable!!!" maxlength="6000" rows="7"></textarea>
</div>
</div>
<hr>
<div class="row">
<div class="form-group">
<button type="submit" id="submit">Submit</button>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>