Files
gh-christianlouis-leagueledger/app/templates/auth/registration_success.html
T
Christian Krakau-Louis 4a79c5cacb Refactor user authentication and dashboard features
- Added `is_admin` field to User model for role management.
- Updated user context middleware to include current user in templates.
- Enhanced session management with improved debug middleware.
- Refactored dashboard view to fetch user-specific data and recent events.
- Improved login and registration templates for better user experience.
- Added admin routes with access control for admin users.
- Updated Docker configuration for better error logging and dependency management.
- Updated requirements to include new dependencies and specify versions.
2025-04-13 18:49:27 +02:00

17 lines
609 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="max-w-md mx-auto my-8">
<div class="bg-white p-8 rounded-lg shadow-md">
<div class="text-center">
<i class="fas fa-check-circle text-green-500 text-5xl mb-4"></i>
<h1 class="text-2xl font-bold text-irish-green mb-3">Registration Successful!</h1>
<p class="text-gray-600 mb-6">Your account has been created successfully.</p>
<a href="/auth/login" class="inline-block bg-irish-green text-white py-2 px-6 rounded-md hover:bg-opacity-90 transition">
Log In
</a>
</div>
</div>
</div>
{% endblock %}