-
Notifications
You must be signed in to change notification settings - Fork 2
/
users.html
79 lines (73 loc) · 1.55 KB
/
users.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
<!DOCTYPE html>
<html>
<head>
<title>Users</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body onload = "generateTableData()">
<section class = "navbar">
<p class = "navbar-header">PROCURATOR</p>
<hr>
<div class = "navbar-content">
<div>
<a href = "index.html">
<p class = "navbar-text">Home</p>
</a>
</div>
<div class = "selected">
<a href = "users.html">
<div class="arrow-left"></div>
<p class = "navbar-text">Users</p>
</a>
</div>
<div>
<a href = "hardware.html">
<p class = "navbar-text">Hardware</p>
</a>
</div>
<div>
<a href = "milestones.html">
<p class = "navbar-text">Milestones</p>
</a>
</div>
<div>
<a href = "sponsors.html">
<p class = "navbar-text">Sponsors</p>
</a>
</div>
<div>
<a href = "judging.html">
<p class = "navbar-text">Judging</p>
</a>
</div>
</div>
</section>
<section class = "main">
<div class = "header">
<h4>USERS</h4>
</div>
<div class = "content">
<div class = "activity">
<p class = "projected-date sub-header">CURRENT USERS</p>
<table id="user-table">
<tr>
<th>Name</th>
<th>Email</th>
<th>School</th>
</tr>
</table>
</div>
</div>
</section>
</body>
<script src = "script.js"></script>
<script src = "global.js"></script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" type="text/javascript"></script>
<script type="text/javascript">
function generateTableData() {
make_server_request('/output1', function(data) {
same(3, data.responseText, "user-table");
})
}
</script>
</html>