Files
enviPy-bayer/templates/static/password_reset_form.html
2025-10-29 12:01:35 +13:00

34 lines
1.0 KiB
HTML

{% extends "static/login_base.html" %}
{% block title %}enviPath - Reset Password{% endblock %}
{% block content %}
<!-- Title -->
<div class="mb-8">
<h2 class="text-3xl font-bold mb-2">Reset Password</h2>
<p class="text-base-content/70">Enter your email address and we'll send you a link to reset your password.</p>
</div>
<!-- Reset Password Form -->
<form method="post" class="space-y-4">
{% csrf_token %}
<div class="form-control">
<label class="label" for="id_email">
<span class="label-text">Email</span>
</label>
<input type="email" id="id_email" name="email" placeholder="user@envipath.org"
class="input input-bordered w-full" required autocomplete="email">
</div>
<button type="submit" class="btn btn-primary w-full">Send Reset Link</button>
</form>
<!-- Back to Sign In -->
<div class="mt-6 text-center text-sm text-base-content/70">
<p>Remember your password?
<a href="{% url 'login' %}" class="link link-primary">Sign in</a>
</p>
</div>
{% endblock %}