forked from enviPath/enviPy
31 lines
990 B
HTML
31 lines
990 B
HTML
{% extends "static/login_base.html" %}
|
|
|
|
{% block title %}enviPath - Password Reset Complete{% endblock %}
|
|
|
|
{% block content %}
|
|
<!-- 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 %}
|