mirror of
https://github.com/thecyberlearn/modern-django-starter.git
synced 2026-08-18 16:32:54 +00:00
- 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>
22 lines
621 B
HTML
22 lines
621 B
HTML
{% extends 'auth_base.html' %}
|
|
|
|
{% block title %}Check Your Email{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="auth-logo">
|
|
📧
|
|
</div>
|
|
|
|
<h1 class="auth-title">Check Your Email</h1>
|
|
<p class="auth-subtitle">We've sent a verification link to your email address</p>
|
|
|
|
<div class="success-message">
|
|
Please check your email and click the verification link to complete your registration.
|
|
</div>
|
|
|
|
<div class="auth-links">
|
|
Didn't receive the email? <a href="{% url 'account_email' %}">Resend</a>
|
|
<span class="separator">•</span>
|
|
<a href="{% url 'account_login' %}">Back to Sign In</a>
|
|
</div>
|
|
{% endblock %} |