34 lines
876 B
HTML
34 lines
876 B
HTML
<!DOCTYPE html>
|
|
<html lang="cs">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>Admin — přihlášení</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Admin Login</h1>
|
|
|
|
{{if .}}
|
|
<p style="color: red;"><strong>Chybné uživatelské jméno nebo heslo.</strong></p>
|
|
{{end}}
|
|
|
|
<form method="post" autocomplete="off">
|
|
<div>
|
|
<label for="username">Uživatelské jméno</label><br>
|
|
<input id="username" name="username" type="text" required>
|
|
</div>
|
|
<div>
|
|
<label for="password">Heslo</label><br>
|
|
<input id="password" name="password" type="password" required>
|
|
</div>
|
|
<div>
|
|
<input type="submit" value="Přihlásit se">
|
|
</div>
|
|
</form>
|
|
|
|
<p><a href="/admin">Zpět na admin panel</a></p>
|
|
</body>
|
|
|
|
</html> |