5cf3f944b1
- Updated docker-compose.yml to include Mailhog service for email testing. - Added environment variables for email configuration in docker-compose. - Updated requirements.txt to include fastapi-mail for email support. - Created templates for password reset, email verification, and welcome emails. - Developed mail utility module to handle sending emails using FastAPI-Mail. - Added documentation for email testing with Mailhog.
17 lines
635 B
HTML
17 lines
635 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">Email Verified!</h1>
|
|
<p class="text-gray-600 mb-6">Your email has been successfully verified. You can now log in to your account.</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 %}
|