The updates for the customer dashboard cum accounts

This commit is contained in:
Vivek
2025-12-09 03:59:57 +05:30
parent 08a89a1212
commit 24355ecdf5
38 changed files with 1057 additions and 16 deletions

View File

@@ -0,0 +1,23 @@
{% extends "auth/base_auth.html" %}
{% block title %}Forgot Password{% endblock %}
{% block left_heading %}Reset Password{% endblock %}
{% block left_subtext %}Enter your email to receive a reset link{% endblock %}
{% block content %}
<h2>Forgot Password</h2>
<p class="subtitle">Enter your email to receive a reset link</p>
<form method="post">
{% csrf_token %}
<div class="input-group">
<label for="id_email">Email</label>
<input id="id_email" name="email" type="email" required>
</div>
<button class="btn-primary" type="submit">Send Reset Link</button>
</form>
<div class="redirect">
Remember your password? <a class="link" href="{% url 'login' %}">Login</a>
</div>
{% endblock %}