-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
43 lines (39 loc) · 1.42 KB
/
index.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
<?php
header("Content-Type: text/html; charset=utf-8");
require_once ("class_loader.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>Quiz Admin</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="javascript/plugins/jquery-ui-1.8.16.custom.min.js"></script>
<link href="javascript/plugins/smoothness/jquery-ui-1.8.16.custom.css" rel="stylesheet" />
<script src="javascript/plugins/jquery.toastmessage.js"></script>
<link href="javascript/plugins/jquery.toastmessage.css" rel="stylesheet" />
<script src="javascript/plugins/ejs_production.js"></script>
<script src="javascript/main.js"></script>
<script src="javascript/ui.js"></script>
<script src="javascript/team_voting_ui.js"></script>
<script src="javascript/api.js"></script>
<script src="javascript/server.js"></script>
<script src="javascript/notifier.js"></script>
<link href="styles/ui.css" rel="stylesheet" />
</head>
<body>
<div id="quizContent">
</div>
<br />
<input type="button" value="Add another quiz" id="addAnotherQuiz" />
<br />
Identification : <input type="text" id="userAutocomplete" /> <div id="idPlaceholder"></div>
<input type="hidden" id="userId" value="-1" />
<br />
<input type="button" value="Evaluate" id="evaluateButton" />
<hr />
Teams evaluation
<div id="teamVotingPlaceholder">
</div>
</body>
</html>