Spaces:
Paused
Paused
File size: 793 Bytes
04477e7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | {% extends "base.html" %}
{% block title %}Страница не найдена{% endblock %}
{% block content %}
<div style="display:flex;align-items:center;justify-content:center;min-height:60vh;">
<div class="d-card" style="text-align:center;padding:60px 40px;max-width:400px;">
<div style="font-size:72px;font-weight:700;color:#A0A5B5;line-height:1;">404</div>
<div style="margin-top:12px;font-size:18px;font-weight:600;color:#fff;">Страница не найдена</div>
<div style="margin-top:6px;font-size:14px;color:#A0A5B5;">Запрашиваемая страница не существует.</div>
<a href="{{ url_for('main.main_page') }}" class="btn-apple" style="margin-top:24px;">На главную</a>
</div>
</div>
{% endblock %}
|