modern-django-starter/templates/account/password_reset.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

48 lines
1.4 KiB
HTML

{% extends 'auth_base.html' %}
{% block title %}Reset Password{% endblock %}
{% block content %}
<div class="auth-logo">
🔑
</div>
<h1 class="auth-title">Reset Password</h1>
<p class="auth-subtitle">Enter your email to receive reset instructions</p>
<form method="post" class="auth-form">
{% csrf_token %}
{% if form.non_field_errors %}
<div class="error-message">
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
</div>
{% endif %}
<div class="form-group">
<label for="{{ form.email.id_for_label }}" class="form-label">Email</label>
<input type="email"
class="form-control {% if form.email.errors %}is-invalid{% endif %}"
id="{{ form.email.id_for_label }}"
name="{{ form.email.name }}"
placeholder="you@example.com"
value="{{ form.email.value|default:'' }}"
required>
{% if form.email.errors %}
<ul class="errorlist">
{% for error in form.email.errors %}
<li>{{ error }}</li>
{% endfor %}
</ul>
{% endif %}
</div>
<button type="submit" class="btn-primary">Send Reset Link</button>
</form>
<div class="auth-links">
Remember your password? <a href="{% url 'account_login' %}">Sign in</a>
</div>
{% endblock %}