30 lines
1009 B
HTML
30 lines
1009 B
HTML
{{define "login.html"}}
|
|
<!doctype html>
|
|
<html lang="de">
|
|
{{template "partials_head" .}}
|
|
<body>
|
|
<div class="page center">
|
|
<div class="card">
|
|
<h1>Login</h1>
|
|
{{template "partials_flash" .}}
|
|
<form method="post" action="{{abs "/login"}}">
|
|
<input type="hidden" name="csrf" value="{{.CSRF}}">
|
|
<input type="hidden" name="next" value="{{.Next}}">
|
|
<label>Username</label>
|
|
<input name="username" autocomplete="username" required>
|
|
<label>Password</label>
|
|
<input name="password" type="password" autocomplete="current-password" required>
|
|
<label>TOTP (optional)</label>
|
|
<input name="totp" inputmode="numeric" autocomplete="one-time-code" placeholder="123456">
|
|
<button class="btn" type="submit">Anmelden</button>
|
|
</form>
|
|
|
|
<div class="hint">
|
|
Tipp: Setze <code>NTFYWUI_BOOTSTRAP_USER</code> und <code>NTFYWUI_BOOTSTRAP_PASS</code> für den ersten Admin.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
{{end}}
|