20 lines
455 B
HTML
20 lines
455 B
HTML
<!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> |