-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathop.html
70 lines (63 loc) · 2.46 KB
/
op.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
<html>
<head>
<!-- This titles the page in the browser. -->
<title>
Admin - Gina Gina
</title>
<!-- This enables mobile browser support, identifies the alphabet
we're using, and links the style sheet. -->
<meta name = "viewport" content = "width = device-width,
initial-scale = 1 maximum-scale = 1"/>
<meta charset = "utf-8"/>
<link rel = "stylesheet" href = "css/styles.css"/>
<!-- Links Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com"/>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
<link href="https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Cormorant+Garamond:wght@400;600&display=swap"
rel="stylesheet"/>
</head>
<body>
<br/>
<p> <h2> Admin Page </h2> </p>
<!-- This table is the cue list! The admin can press "go" to publish
posts. In case of an emergency where an error occurred, they can
unpublish them as well by pressing "unpublish". -->
<table class = "center">
<tr>
<td>Cue 1</td>
<td><button type = "button" id = "cue-1">
Go </button></td>
<td><button type = "button" id = "undo-cue-1"
class = "unpublish-button">
Unpublish </button></td>
</tr>
<tr>
<td>Cue 2</td>
<td><button type = "button" id = "cue-2">
Go </button></td>
<td><button type = "button" id = "undo-cue-2"
class = "unpublish-button">
Unpublish </button></td>
</tr>
<tr>
<td>Cue 3</td>
<td><button type = "button" id = "cue-3">
Go </button></td>
<td><button type = "button" id = "undo-cue-3"
class = "unpublish-button">
Unpublish </button></td>
</tr>
</table>
<br/>
<br/>
<br/>
<br/>
<!-- This unpublishes all posts at once for post-show ease. -->
<button type = "button" class = "unpublish-button">
<b> HARD RESET </b> </button>
<br/>
<br/>
<!-- This links you to the log-in page. -->
<a href = login.html> Log out </a> </p>
</body>
</html>