-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrate.php
More file actions
29 lines (24 loc) · 671 Bytes
/
Copy pathrate.php
File metadata and controls
29 lines (24 loc) · 671 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Rate</title>
</head>
<body>
<h2> Once you are finished with your tutor session, please rate your tutor's performance on this 5 star scale.</h2>
<br><br>
<h3> If you have any other comments please visit our feedback page</h3>
<form action="incrate.php" method="POST">
<input type="radio" name="rating" value=1>1 star
<br>
<input type="radio" name="rating" value=2>2 stars
<br>
<input type="radio" name="rating" value=3>3 stars
<br>
<input type="radio" name="rating" value=4>4 stars
<br>
<input type="radio" name="rating" value=5>5 stars>
<br>
<button type="submit" name="submit">Submit</button>
</form>
</body>
</html>