Athenaeum/templates/login.html
2025-05-23 15:25:48 +02:00

13 lines
446 B
HTML

<!DOCTYPE html>
<html lang="pl">
<head><meta charset="UTF-8"><title>Logowanie</title></head>
<body>
<h1>Logowanie</h1>
<form action="/login" method="post">
<label>Email:<input type="email" name="email" required></label><br>
<label>Password:<input type="password" name="password" required></label><br>
<button type="submit">Zaloguj się</button>
</form>
<a href="/register">Nie masz konta? Zarejestruj się</a>
</body>
</html>