first commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Регистрация</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="page auth-page">
|
||||
<h1>Запрос доступа</h1>
|
||||
{% if error_message %}
|
||||
<div class="alert alert-error">{{ error_message }}</div>
|
||||
{% endif %}
|
||||
{% if success_message %}
|
||||
<div class="alert alert-success">{{ success_message }}</div>
|
||||
{% endif %}
|
||||
<form method="post" class="auth-form">
|
||||
<label>
|
||||
Логин
|
||||
<input type="text" name="username" required />
|
||||
</label>
|
||||
<label>
|
||||
Пароль
|
||||
<input type="password" name="password" required />
|
||||
</label>
|
||||
<label>
|
||||
Повторите пароль
|
||||
<input type="password" name="confirm" required />
|
||||
</label>
|
||||
<button type="submit">Отправить заявку</button>
|
||||
</form>
|
||||
<p>Уже есть аккаунт? <a href="{{ url_for('login') }}">Войти</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user