forked from encorelab/EvoRoom3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
teacher.html
101 lines (90 loc) · 3.32 KB
/
teacher.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<title>Teacher Dashboard - Day 1 - EvoRoom3</title>
<link href="js/sail.js/css/sail.css" rel="stylesheet" type="text/css" />
<link href="css/jquery-ui.css" rel="stylesheet" type="text/css" />
<link href="css/evoroom.css" rel="stylesheet" type="text/css" />
<link href="css/evoroom-teacher.css" rel="stylesheet" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<script src="js/sail.js/sail.js"></script>
<script>
Sail.load()
.then('js/sail.js/rollcall.js')
.then('js/evoroom.teacher.js')
.thenRun(function() {
return Sail.init(EvoRoom.Teacher);
});
</script>
</head>
<body>
<header>
<div class="progressbar day1">
<div class="indicator step-1-1">1. Orientation</div>
<div class="indicator step-1-2">2. Rotation I</div>
<div class="indicator step-1-3">3. Meetup I</div>
<div class="indicator step-1-4">4. Rotation II</div>
<div class="indicator step-1-5">5. Meetup II</div>
<div class="indicator step-1-6">6. Complete</div>
</div>
</header>
<table id="teacher-dashboard-day-1" class="teacher-dashboard" style="visibility: hidden">
<tr class="step step-1-0">
<th>0. Outside</th>
<td class="students" colspan="2">
</td>
</tr>
<tr class="step step-1-1">
<th>1. Orientation</th>
<td class="buttons">
<button value="200 mya">200 mya</button>
<button value="150 mya">150 mya</button>
<button value="100 mya">100 mya</button>
<br />
<button value="50 mya">50 mya</button>
<button value="25 mya">25 mya</button>
<button value="10 mya">10 mya</button>
<br />
<button value="5 mya">5 mya</button>
<button value="2 mya">2 mya</button>
</td>
<td class="students">
</td>
</tr>
<tr class="step step-1-2">
<th>2. Rotation I</th>
<td class="buttons">
<button class="start_rotation_1 teacher-button-faded">Start Rotation I</button>
</td>
<td class="students">
</td>
</tr>
<tr class="step step-1-3">
<th>3. Meetup I</th>
<td class="students" colspan="2">
</td>
</tr>
<tr class="step step-1-4">
<th>4. Rotation II</th>
<td class="buttons">
<button class="start_rotation_2 teacher-button-faded">Start Rotation II</button>
</td>
<td class="students">
</td>
</tr>
<tr class="step step-1-5">
<th>5. Meetup II</th>
<td class="students" colspan="2">
</td>
</tr>
<tr class="step step-1-6">
<th>6. Complete</th>
<td class="buttons">
<button class="assign_homework_1 teacher-button-faded">Assign Homework</button>
</td>
<td class="students">
</td>
</tr>
</table>
</body>
</html>