Files
evo-sync/web/templates/profile_delete.html
mguschin eb4165e48b feat: apply new Мои Товары design system across all templates
Replace Pico CSS with custom design: dark sidebar layout, Golos Text +
JetBrains Mono fonts, orange accent (#FF5500), new component classes
(cards, tables, buttons, tags, toggles, alerts, tabs, login split-panel).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-18 12:43:08 +03:00

28 lines
1.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "base.html" %}
{% block title %}Удалить аккаунт — Мои Товары{% endblock %}
{% block page_title %}Удалить аккаунт{% endblock %}
{% block content %}
<div class="pg-title">Удалить аккаунт</div>
<div class="pg-sub">Это действие необратимо</div>
<div class="card" style="max-width:440px;border-color:#F4AEAE;">
<div class="alert alert-yl" style="margin-bottom:18px;">
<span><i class="bi bi-exclamation-triangle"></i></span>
<div><strong>Внимание!</strong> Все ваши данные, подключения и история синхронизации будут удалены без возможности восстановления.</div>
</div>
<form method="post" action="/profile/delete">
<div class="form-row">
<label class="form-lbl" for="password">Введите пароль для подтверждения</label>
<input class="inp" type="password" id="password" name="password" required>
</div>
<div style="display:flex;gap:8px;">
<button type="submit" class="btn btn-danger">
<i class="bi bi-trash"></i> Удалить мой аккаунт
</button>
<a href="/profile" class="btn btn-outline">Отмена</a>
</div>
</form>
</div>
{% endblock %}