ee946f7f1f
- Replace tumbler with Start/Stop buttons (green/red) - Lock settings form with <fieldset disabled> when auto-reply active - Clear queue + reset fetch timer on settings save - Show 'Очередь подгрузится через X сек.' countdown in queue section - API /status returns next_fetch_seconds, queue_len, auto_reply_enabled - Login: price 15₽/день, up to 144 replies/day, wb2 logo, promo panel 25% width - Replace wb.png → wb2.png across all templates Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
47 lines
2.0 KiB
HTML
47 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Регистрация — WB Feedback</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}" />
|
|
</head>
|
|
<body>
|
|
<div class="auth-shell">
|
|
<section class="auth-card">
|
|
<div class="auth-kicker">
|
|
<img src="{{ url_for('static', filename='wb2.png') }}" class="auth-kicker-logo-img" alt="WB">
|
|
<span class="auth-kicker-text">Wildberries Feedback</span>
|
|
</div>
|
|
<h1>Запрос доступа</h1>
|
|
<p class="auth-subtitle">После регистрации администратор подтвердит доступ к кабинету.</p>
|
|
|
|
{% 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" placeholder="Придумайте логин" required autofocus />
|
|
</label>
|
|
<label>
|
|
Пароль
|
|
<input type="password" name="password" placeholder="Придумайте пароль" required />
|
|
</label>
|
|
<label>
|
|
Повторите пароль
|
|
<input type="password" name="confirm" placeholder="Повторите пароль" required />
|
|
</label>
|
|
<button type="submit">Отправить заявку</button>
|
|
</form>
|
|
|
|
<p class="auth-footer">Уже есть аккаунт? <a href="{{ url_for('login') }}">Войти</a></p>
|
|
</section>
|
|
</div>
|
|
</body>
|
|
</html>
|