-
Notifications
You must be signed in to change notification settings - Fork 0
/
instructor.php
66 lines (56 loc) · 1.91 KB
/
instructor.php
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
<?php require_once('header.php'); ?>
/* test1 */
<div class="container">
<a href="../">Back to Home</a>
<hr>
<h3>Instructor Mode</h3>
<hr>
<ul id="myTab" class="nav nav-tabs">
<li class="active"><a href="#screen1" data-toggle="tab">Instructions</a></li>
<li><a href="#screen2" data-toggle="tab">Create a Game</a></li>
<li><a href="#screen3" data-toggle="tab">Monitor an Existing Game</a></li>
</ul>
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade in active" id="screen1">
<p><h4>Instructions</h4></p>
<p>If you are an instructor and would like to request access please contact Mariano Tappata at <a href="mailto:[email protected]">[email protected]</a></p>
</div>
<div class="tab-pane fade" id="screen2">
<p><a href="create_game.php">Create a Game</a></p>
</div>
<div class="tab-pane fade" id="screen3">
<table class="table">
<thead>
<tr>
<th>Game ID</th>
<th>Number of Rounds</th>
<th>Time Remaining</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>3124</td>
<td>4</td>
<td>4 Hours 23 Minutes</td>
<td><a href="#">View Details</a></td>
</tr>
<tr>
<td>2512</td>
<td>2</td>
<td>2 Days</td>
<td><a href="#">View Details</a></td>
</tr>
<tr>
<td>3312</td>
<td>4</td>
<td>5 Days</td>
<td><a href="#">View Details</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<hr>
</div> <!-- /container -->
<?php require_once('footer.php'); ?>