Первый коммит: загрузка проекта SecretText

This commit is contained in:
2026-09-05 15:35:25 +03:00
commit faa6bbc574
36 changed files with 5333 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block content %}
<div class="card border-danger">
<div class="card-body text-center py-5">
<h3 class="text-danger fw-normal">Ошибка</h3>
<p class="text-secondary my-4">{{ error or 'Произошла непредвиденная ошибка' }}</p>
<a href="{{ url_for('index') }}" class="btn btn-secondary">На главную</a>
</div>
</div>
{% endblock %}