basic auth

This commit is contained in:
2025-09-04 19:33:52 +02:00
parent 2cee105670
commit 8abc610bec
4 changed files with 154 additions and 6 deletions

20
login.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
</head>
<body>
<h1>Login</h1>
<form action="/login" method="post">
<label for="password">Heslo:</label>
<input type="password" id="password" name="password" required>
<br>
<button type="submit">Přihlásit se</button>
</form>
</body>
</html>