danmia
This commit is contained in:
23
templates/register.html
Normal file
23
templates/register.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user