CampfireAuth/files/html/register.html
2025-03-19 21:59:49 +05:00

30 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="/css/register.css">
</head>
<body>
<main class="main">
<div class="registration">
<h1>Регистрация</h1>
<form method="POST" action="/register">
<label>Имя пользователя:</label><br>
<input type="text" name="username" required><br>
<label>Пароль:</label><br>
<input type="password" name="password" required><br>
<label>Повторите пароль:</label><br>
<input type="password" name="password_repeat" required><br>
<button type="submit">Зарегистрироваться</button>
<a href="/">Назад</a>
</form>
</div>
</main>
</body>
</html>