go-wiki/templates/login.html
2026-07-14 20:46:19 +02:00

26 lines
818 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anmelden Wiki</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body class="password-page">
<div class="card">
<h1>Wiki-Login</h1>
<p>Bitte gib deinen Team-Zugriffskey ein.</p>
{{/* Wenn .Error nicht leer ist, zeigen wir die Fehlermeldung an */}}
{{if .Error}}
<div class="error">{{.Error}}</div>
{{end}}
<form method="POST" action="/login">
<label for="key">Zugriffskey</label>
<input type="password" id="key" name="key" autofocus placeholder="Key eingeben">
<button type="submit">Anmelden</button>
</form>
</div>
</body>
</html>