|
{% extends "layout.html" %} |
|
|
|
{% block title %}Page non trouvée - 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-blue-600 mb-4">404</div> |
|
<h1 class="text-2xl font-bold text-gray-800 mb-4">Page non trouvée</h1> |
|
<p class="text-gray-600 mb-6">La page que vous recherchez n'existe pas ou a été déplacée.</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 %} |
|
|