Files
wildberries/remote_copy/templates/register.html
T
2026-05-06 13:28:54 +03:00

37 lines
1.3 KiB
HTML

<!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>