modern-django-starter/templates/account/email_confirm.html
Django Template 85f68a8df9 Complete authentication system with modern UI
- Add modern authentication templates with black/white theme
- Implement email/password and Google OAuth login/signup
- Configure SMTP email delivery for verification emails
- Create clean, rectangular authentication cards
- Remove Facebook integration, keep Google only
- Add responsive auth design with reduced font sizes
- Fix Django settings for production-ready email backend
- Update Google OAuth credentials and callback URLs
- Generate secure SECRET_KEY for production

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-11 12:26:22 +05:30

27 lines
664 B
HTML

{% extends 'auth_base.html' %}
{% block title %}Confirm Email{% endblock %}
{% block content %}
<div class="auth-logo">
✉️
</div>
<h1 class="auth-title">Confirm Your Email</h1>
<p class="auth-subtitle">Click the button below to verify your email address</p>
{% if confirmation %}
<form method="post" class="auth-form">
{% csrf_token %}
<button type="submit" class="btn-primary">Confirm Email</button>
</form>
{% else %}
<div class="error-message">
Invalid or expired confirmation link.
</div>
{% endif %}
<div class="auth-links">
<a href="{% url 'account_login' %}">Back to Sign In</a>
</div>
{% endblock %}