-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
32 lines (32 loc) · 996 Bytes
/
Copy pathadmin.html
File metadata and controls
32 lines (32 loc) · 996 Bytes
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
<!--@author EK-->
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<title>Admin – Time Recording</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<nav>
<a href="dashboard.html">Zurück zur Übersicht</a>
<button onclick="logout()">Logout</button>
</nav>
<main>
<h2>Benutzerverwaltung</h2>
<form id="user-form">
<input type="text" id="new-username" placeholder="Benutzername" required />
<input type="password" id="new-password" placeholder="Initialpasswort" required />
<select id="new-role">
<option value="EMPLOYEE">Mitarbeiter*in</option>
<option value="ADMIN">Admin</option>
</select>
<button type="submit">Benutzer anlegen</button>
</form>
<div id="admin-feedback" class="success hidden"></div>
<h3>Bestehende Benutzer</h3>
<ul id="user-list"></ul>
</main>
<script src="js/api.js"></script>
<script src="js/admin.js"></script>
</body>
</html>