1a06979120
Replace text "WB" placeholder with wb.png in topbar and login/register pages. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
40 lines
1.6 KiB
HTML
40 lines
1.6 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='wb.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 %}
|
|
|
|
<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>
|
|
<button type="submit">Войти</button>
|
|
</form>
|
|
|
|
<p class="auth-footer">Нет аккаунта? <a href="{{ url_for('register') }}">Запросить доступ</a></p>
|
|
</section>
|
|
</div>
|
|
</body>
|
|
</html>
|