V0.1
This commit is contained in:
33
public/bootstrap.html
Normal file
33
public/bootstrap.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Erster Administrator — SDS CRM</title>
|
||||
<link rel="stylesheet" href="/css/style.css" />
|
||||
<link rel="stylesheet" href="/css/pages/auth.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="header">
|
||||
<h1><a href="/start.html">SDS CRM</a></h1>
|
||||
<nav id="main-nav" aria-label="Hauptnavigation"></nav>
|
||||
</header>
|
||||
<main id="app" class="main">
|
||||
<p id="page-loading" class="muted">Lade …</p>
|
||||
<div id="bootstrap-panel" class="stack auth-panel" hidden>
|
||||
<h2>Erster Administrator</h2>
|
||||
<p class="muted">
|
||||
Es ist noch kein Benutzer angelegt. Legen Sie das erste Admin-Konto an (min. 8 Zeichen Passwort).
|
||||
</p>
|
||||
<div class="card">
|
||||
<form id="form-boot" class="stack">
|
||||
<label>Benutzername <input name="username" required autocomplete="username" /></label>
|
||||
<label>Passwort <input name="password" type="password" required minlength="8" autocomplete="new-password" /></label>
|
||||
<button type="submit">Konto anlegen</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<script type="module" src="/js/pages/bootstrap.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user