27 lines
842 B
HTML
Executable File
27 lines
842 B
HTML
Executable File
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Signage Login</title>
|
|
<link href="https://unpkg.com/@tabler/core@latest/dist/css/tabler.min.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body class="d-flex align-items-center justify-content-center bg-dark" style="height:100vh;">
|
|
<div class="card card-md">
|
|
<div class="card-body">
|
|
<h2 class="text-center mb-4">Signage Admin</h2>
|
|
<form method="post">
|
|
<div class="mb-3">
|
|
<label class="form-label">Benutzername</label>
|
|
<input class="form-control" name="username" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">Passwort</label>
|
|
<input type="password" class="form-control" name="password" required>
|
|
</div>
|
|
<button class="btn btn-primary w-100">Login</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |