Files
gh-christianlouis-leagueledger/app/templates/auth/account_deleted.html
T
Christian Krakau-Louis 6c260c5936 Add account deletion confirmation page, privacy settings template, and profile view template
- Created a new HTML template for account deletion confirmation with user-friendly messaging and a return link.
- Developed a privacy settings page allowing users to control visibility of their personal information with appropriate messaging for success and error states.
- Implemented a profile view template displaying user information, statistics, teams, and achievements based on user permissions.
- Added responsive design elements and improved user interface with Tailwind CSS classes for better aesthetics and usability.
2025-04-16 21:45:33 +02:00

28 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="max-w-md mx-auto my-10 bg-white p-8 rounded-lg shadow-md">
<div class="flex flex-col items-center justify-center">
<div class="w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-user-slash text-red-600 text-2xl"></i>
</div>
<h1 class="text-2xl font-bold text-gray-800 mb-2">Account Deleted</h1>
<p class="text-gray-600 text-center mb-6">
Your account has been successfully deleted. All your personal information has been removed from our system.
</p>
<div class="border-t border-gray-200 w-full pt-6 mt-2">
<p class="text-gray-600 text-center mb-4">
We're sorry to see you go. You can always create a new account if you wish to return.
</p>
<div class="flex justify-center">
<a href="/" class="bg-irish-green hover:bg-opacity-90 text-white font-semibold py-2 px-4 rounded-md transition">
Return to Homepage
</a>
</div>
</div>
</div>
</div>
{% endblock %}