style: update login pages

This commit is contained in:
2025-10-29 12:01:35 +13:00
parent b7e1dac66a
commit 15809a4ccf
12 changed files with 431 additions and 176 deletions

View File

@ -1,7 +1,30 @@
{% extends "static/static_base.html" %}
{% extends "static/login_base.html" %}
{% block title %}enviPath - Reset Email Sent{% endblock %}
{% block content %}
<div class="alert alert-success" role="alert">
An email has been sent with instructions to reset your password.
<!-- Success Icon -->
<div class="flex justify-center mb-6">
<div class="rounded-full bg-success/20 p-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16 stroke-success" fill="none" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 19v-8.93a2 2 0 01.89-1.664l7-4.666a2 2 0 012.22 0l7 4.666A2 2 0 0121 10.07V19M3 19a2 2 0 002 2h14a2 2 0 002-2M3 19l6.75-4.5M21 19l-6.75-4.5M3 10l6.75 4.5M21 10l-6.75 4.5m0 0l-1.14.76a2 2 0 01-2.22 0l-1.14-.76" />
</svg>
</div>
{% endblock %}
</div>
<!-- Title -->
<div class="text-center mb-8">
<h2 class="text-3xl font-bold mb-4">Check Your Email</h2>
<p class="text-base-content/70 mb-4">
We've sent an email with instructions to reset your password.
</p>
<p class="text-sm text-base-content/60">
If you don't see it in your inbox, please check your spam folder.
</p>
</div>
<!-- Actions -->
<div class="space-y-4">
<a href="{% url 'login' %}" class="btn btn-primary w-full">Back to Sign In</a>
</div>
{% endblock %}