-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathevaluator.html
79 lines (78 loc) · 3.08 KB
/
evaluator.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
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
<!-- (c) 2024 Joseph Nnachi -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mock Evaluation Checker</title>
<link rel="stylesheet" href="style/styles.css">
<link rel="icon" href="favicon.ico">
</head>
<body>
<div class="container">
<h1>Mock Evaluator</h1>
<form class="section">
<h3>Mentor Self-Evaluation</h3>
<label>
Did you contact every student on your roster this week?
<select id="contacted-students">
<option value="select"> Select ▾</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
</label>
<label>
Self-Evaluation Completed
<select id="self-evaluation">
<option value="select"> Select ▾</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
</label>
<label>
Did you complete the Mentor Development activity this week?
<select id="mentor-development">
<option value="select"> Select ▾</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
</label>
<label>
Did you contact every student with an outstanding ticket this week?
<select id="contacted-tickets">
<option value="select"> Select ▾</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
</label>
<label>
Did you complete the task outlined in the Roster Management Guide?
<select id="roster-management">
<option value="select"> Select ▾</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
</label>
<label>
Did you document every conversation with a student?
<select id="documented-conversations">
<option value="select"> Select ▾</option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
</label>
<button type="button" id="evaluateMentor">Evaluate</button>
<br>
<br>
<a href="interaction.html">Next</a>
</form>
<div id="result"></div>
</div>
<footer> ©
<script>
document.write(new Date().getFullYear());
</script>, Joseph Nnachi
</footer>
<script src="js/scripts.js"></script>
</body>
</html>