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,5 +1,30 @@
{% extends "static/static_base.html" %}
{% extends "static/login_base.html" %}
{% block title %}enviPath - Password Reset Complete{% endblock %}
{% block content %}
<p>Your password has been reset successfully. <a href="{% url 'login' %}">Login</a></p>
<!-- 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="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
</div>
<!-- Title -->
<div class="text-center mb-8">
<h2 class="text-3xl font-bold mb-4">Password Reset Complete!</h2>
<p class="text-base-content/70 mb-4">
Your password has been successfully reset.
</p>
<p class="text-sm text-base-content/60">
You can now sign in with your new password.
</p>
</div>
<!-- Actions -->
<div class="space-y-4">
<a href="{% url 'login' %}" class="btn btn-primary w-full">Sign In</a>
</div>
{% endblock %}