18 lines
375 B
HTML
18 lines
375 B
HTML
<!DOCTYPE html>
|
|
<html lang="cs">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Admin Login</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Admin Login</h1>
|
|
<form method="post">
|
|
Uživatelské jméno: <input type="text" name="username"><br>
|
|
Heslo: <input type="password" name="password"><br>
|
|
<input type="submit" value="Přihlásit se">
|
|
</form>
|
|
</body>
|
|
|
|
</html> |