blob: 37af334b1ada221b52e3cea7cc76b49646d98dc2 (
plain) (
blame)
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
|
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Übersicht - RSDSL Verwaltungswerkzeug</title>
<script type="module" src="/dashboard.js" defer></script>
</head>
<body>
<div class="container">
<h1>Übersicht</h1>
<div class="row">
<form id="dashboard-form">
<!-- <button id="dashboard-submit" type="submit">↩ Zurück zur Übersicht</button> -->
</form>
<form id="wan-open-form">
<button id="wan-open-submit" type="submit">Einwahl und Zugangsdaten</button>
</form>
<form id="lan-open-form">
<button id="lan-open-submit" type="submit">LAN</button>
</form>
<form id="vpn-open-form">
<button id="vpn-open-submit" type="submit">VPN</button>
</form>
<form id="log-open-form">
<button id="log-open-submit" type="submit">Diagnoseprotokolle</button>
</form>
<form id="sys-open-form">
<button id="sys-open-submit" type="submit">System</button>
</form>
<form id="disconnect-form">
<button id="disconnect-submit" type="submit">🚪 Abmelden</button>
</form>
</div>
</div>
</body>
</html>
|