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,17 @@
{% extends "base_auth.html" %}
{% block title %}Verify Email{% endblock %}
{% block left_heading %}Verify your email{% endblock %}
{% block left_subtext %}A verification link has been sent to your email{% endblock %}
{% block content %}
<h2>Verify Your Email</h2>
<p class="subtitle">Please check your inbox and click the verification link</p>
<div style="font-size:14px;color:#444;margin-top:12px;">
If you don't receive the email within a few minutes, check your spam folder.
</div>
<div class="redirect">
<a class="link" href="{% url 'myapp:login' %}">Back to Login</a>
</div>
{% endblock %}