File size: 1,161 Bytes
91073d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "layout.html" %}

{% block title %}Accès refusé - Forum Communautaire{% endblock %}

{% block content %}
<div class="max-w-md mx-auto">
    <div class="bg-white rounded-lg shadow overflow-hidden text-center p-8">
        <div class="text-6xl font-bold text-red-600 mb-4">403</div>
        <h1 class="text-2xl font-bold text-gray-800 mb-4">Accès refusé</h1>
        <p class="text-gray-600 mb-6">Vous n'avez pas la permission d'accéder à cette page.</p>
        
        <div class="flex flex-col sm:flex-row justify-center gap-4 mt-4">
            <a href="{{ url_for('forum.index') }}" class="px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 focus:outline-none focus:ring transition-colors">
                <i data-feather="home" class="w-4 h-4 inline-block mr-1"></i> Accueil
            </a>
            <button onclick="window.history.back()" class="px-4 py-2 bg-gray-200 text-gray-800 rounded-md hover:bg-gray-300 focus:outline-none focus:ring transition-colors">
                <i data-feather="arrow-left" class="w-4 h-4 inline-block mr-1"></i> Retour
            </button>
        </div>
    </div>
</div>
{% endblock %}