-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.html
65 lines (58 loc) · 2.13 KB
/
admin.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
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Technikprobleme Admin</title>
<meta name="description" content="Projekt DB">
<meta name="author" content="Informatikkurs 2020">
<link rel="stylesheet" href="css/colors.css" />
<link rel="stylesheet" href="css/admin.css" />
</head>
<body>
<script src="script.js"></script>
<div class="grid-container">
<div class="header">
<span class="headleft">
</span>
<div class="logo">
<img src="logo-1.png" />
</div>
</div>
<div class="main" id="container">
<div id="5" class="container adminItem" style="animation: 0.5s ease 0s 1 normal none running fadeIn;">
<span class="adminRoom">27</span>
<span class="adminWhat">Smartboard</span>
<span class="adminWho">me</span>
<span class="adminX"><button onclick="pushRemoval(5);" class="removeButton">x</button></span>
<span class="adminWhy">Schaltet nicht ein</span>
</div>
<div id="11" class="container adminItem" style="animation: 0.5s ease 0s 1 normal none running fadeIn;">
<span class="adminRoom">31</span>
<span class="adminWhat">Beamer</span>
<span class="adminWho">you</span>
<span class="adminX"><button onclick="pushRemoval(11);" class="removeButton">x</button></span>
<span class="adminWhy">flackert</span>
</div>
<button class="submit" id="reload" onclick="pull()">🗘</button>
</div>
<div class="footer">
<!-- TODO -->
</div>
</div>
<div class="footer">
<table style="width: 100%; padding: 10px;">
<tr>
<td style="width: auto;">
Copyright 2020 ©
</td>
<td style="text-align: right; border-right: 1px solid rgba(255, 255, 255, 0.5); padding-right: 10px; width: 71px;">
<a style="text-decoration: none; color: rgba(255, 255, 255, 0.5);" href="http://www.helmholtz-karlsruhe.de/">Startseite</a>
</td>
<td style="text-align: right; width: 81px; padding-left: 10px;">
<a style="text-decoration: none; color: rgba(255, 255, 255, 0.5);" href="http://www.helmholtz-karlsruhe.de/impressum/">Impressum</a>
</td>
</tr>
</table>
</div>
</body>
</html>