Athenaeum/templates/login.html

14 lines
446 B
HTML
Raw Normal View History

2025-05-23 15:25:48 +02:00
<!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>