23 lines
750 B
HTML
23 lines
750 B
HTML
<!DOCTYPE html>
|
|
<html lang="pl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Rejestracja</title>
|
|
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Rejestracja</h1>
|
|
<form method="POST">
|
|
<input type="text" name="username" placeholder="Nazwa użytkownika" required>
|
|
<input type="password" name="password" placeholder="Hasło" required>
|
|
<input type="password" name="confirm_password" placeholder="Potwierdź hasło" required>
|
|
<button type="submit">Zarejestruj</button>
|
|
</form>
|
|
<div class="link">
|
|
<a href="/login">Masz już konto? Zaloguj się</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |