Orange #FF5500 rounded-square with shopping-bag icon matching the sidebar logo. Includes SVG (modern), ICO (16+32px, legacy), and apple-touch-icon PNG. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
109 lines
4.6 KiB
HTML
109 lines
4.6 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="ru">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Вход — Мои Товары</title>
|
||
<link rel="icon" href="/static/favicon.ico" sizes="16x16 32x32" type="image/x-icon">
|
||
<link rel="icon" href="/static/favicon.svg" type="image/svg+xml">
|
||
<link rel="apple-touch-icon" href="/static/favicon-32.png">
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||
<link rel="stylesheet" href="/static/style.css">
|
||
</head>
|
||
<body>
|
||
|
||
<div class="login-wrap">
|
||
|
||
<!-- Left panel -->
|
||
<div class="login-left">
|
||
<div class="login-left-bg"></div>
|
||
<div class="login-left-pattern"></div>
|
||
|
||
<div class="login-brand">
|
||
<div class="login-brand-icon">
|
||
<svg width="28" height="28" viewBox="0 0 28 28" fill="none">
|
||
<path d="M9 11h10l-1.5 9H10.5L9 11Z" fill="white" opacity="0.95"/>
|
||
<path d="M11.5 11V9a2.5 2.5 0 015 0v2" stroke="white" stroke-width="1.6" stroke-linecap="round" fill="none"/>
|
||
<line x1="12" y1="15" x2="16" y2="15" stroke="#FF5500" stroke-width="1.3" stroke-linecap="round"/>
|
||
</svg>
|
||
</div>
|
||
<div>
|
||
<div class="login-brand-name">Мои Товары</div>
|
||
<div class="login-brand-sub">мои-товары.рф</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="login-hero">
|
||
<div class="login-hero-title">
|
||
Управляйте товарами<br>и продавайте<br><em>везде сразу</em>
|
||
</div>
|
||
<div class="login-hero-body">
|
||
Синхронизируйте ассортимент вашего магазина Эвотор с онлайн-площадками — быстро, без ручной работы.
|
||
</div>
|
||
<div class="login-chips">
|
||
<div class="login-chip"><i class="bi bi-shop"></i> Эвотор</div>
|
||
<div class="login-chip"><i class="bi bi-badge-vr"></i> VK Market</div>
|
||
<div class="login-chip"><i class="bi bi-arrow-repeat"></i> Авто-синхронизация</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="login-footer">© 2025 Мои Товары · мои-товары.рф</div>
|
||
</div>
|
||
|
||
<!-- Right panel -->
|
||
<div class="login-right">
|
||
<div class="login-box">
|
||
<div style="margin-bottom:28px;">
|
||
<div style="margin-bottom:18px;">
|
||
<div style="width:36px;height:36px;border-radius:9px;background:#FF5500;display:flex;align-items:center;justify-content:center;">
|
||
<svg width="20" height="20" viewBox="0 0 28 28" fill="none">
|
||
<path d="M9 11h10l-1.5 9H10.5L9 11Z" fill="white" opacity="0.95"/>
|
||
<path d="M11.5 11V9a2.5 2.5 0 015 0v2" stroke="white" stroke-width="1.6" stroke-linecap="round" fill="none"/>
|
||
</svg>
|
||
</div>
|
||
</div>
|
||
<div class="login-box-title">Вход в аккаунт</div>
|
||
<div class="login-box-sub">Введите данные, полученные после регистрации</div>
|
||
</div>
|
||
|
||
{% if errors %}
|
||
<div class="alert alert-rd" style="margin-bottom:14px;">
|
||
<span><i class="bi bi-x-circle"></i></span>
|
||
<div>{% for e in errors %}<div>{{ e }}</div>{% endfor %}</div>
|
||
</div>
|
||
{% endif %}
|
||
|
||
<form method="post" action="/login">
|
||
<div class="form-row">
|
||
<label class="form-lbl" for="email">Email</label>
|
||
<input class="inp" type="email" id="email" name="email"
|
||
placeholder="you@store.ru"
|
||
value="{{ form.email if form else '' }}" required>
|
||
</div>
|
||
<div class="form-row">
|
||
<label class="form-lbl" for="password">Пароль</label>
|
||
<input class="inp" type="password" id="password" name="password"
|
||
placeholder="••••••••" required>
|
||
</div>
|
||
<button type="submit" class="login-btn">Войти →</button>
|
||
</form>
|
||
|
||
<div class="login-hint" style="margin-top:16px;">
|
||
<a href="/forgot-password">Забыли пароль?</a>
|
||
</div>
|
||
<div class="login-hint">
|
||
Нет аккаунта? Купите приложение на
|
||
<a href="https://market.evotor.ru" target="_blank" rel="noreferrer">Эвотор.Маркет</a>
|
||
и получите доступ автоматически.
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
</body>
|
||
</html>
|