This commit is contained in:
2025-09-27 20:49:58 +02:00
commit 767fb638ce
58 changed files with 6724 additions and 0 deletions

20
templates/403.html Normal file
View File

@@ -0,0 +1,20 @@
{% extends "base.html" %}
{% block title %}{{ _('Home') }}{% endblock %}
{% block content %}
<div class="row justify-content-center align-items-center mt-5">
<div class="col-md-8">
<div class="card shadow-lg p-4 mb-5" style="border-radius: 1.5rem;">
<div class="card-body text-center">
<h1 class="mb-3" style="font-size:2.5rem; font-weight:700; color:#2563eb;">
<i class="bi bi-people-fill me-2"></i>MiniFacebook 403
</h1>
<p class="lead mb-4" style="font-size:1.2rem;">
{{ _('This page is not accessible to you, you do not have the permissions to view it.') }}<br>
<span class="text-muted">{{ _('You can go back from the page.') }}</span>
</p>
<a href="{{ url_for('post.feed') }}" class="btn btn-success m-2 px-4 py-2"><i class="bi bi-house-door me-1"></i>{{ _('Go to Feed') }}</a>
</div>
</div>
</div>
</div>
{% endblock %}