-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadminPage.html
More file actions
54 lines (43 loc) · 1.39 KB
/
Copy pathadminPage.html
File metadata and controls
54 lines (43 loc) · 1.39 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Admin Page</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="observePage.css">
<link rel="stylesheet" href="mainPage.css">
<link rel="stylesheet" href="critFail.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js"></script>
<script src="adminPage.js"></script>
</head>
<h1 align="center" style="color: rgb(165, 0, 0)">Welcome to the Admin page</h1>
<h2 align="center" style="color: white">-Current Servers-</h3>
<body>
<div class="fixed_header">
<table>
<thead>
<tr>
<th>Campaign Name</th>
<th>Players</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="row">
<div class="buttonLeft">
<a href="mainPage.html">
<button class="button returnButton">Back</button>
</a>
</div>
<div class="centerSpace">
<p> </p>
</div>
<div class="buttonRight">
<button class="button returnButton" onclick="logout()">Logout</button>
</div>
</div>
</body>
</html>