Files
enviPy-bayer/templates/static/password_reset_complete.html
Tobias O 21d30a923f [Refactor] Large scale formatting/linting (#193)
All html files now prettier formatted and fixes for incompatible blocks applied

Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#193
Co-authored-by: Tobias O <tobias.olenyi@envipath.com>
Co-committed-by: Tobias O <tobias.olenyi@envipath.com>
2025-11-12 22:47:10 +13:00

41 lines
1.1 KiB
HTML

{% extends "static/login_base.html" %}
{% block title %}enviPath - Password Reset Complete{% endblock %}
{% block content %}
<!-- Success Icon -->
<div class="mb-6 flex justify-center">
<div class="bg-success/20 rounded-full p-6">
<svg
xmlns="http://www.w3.org/2000/svg"
class="stroke-success h-16 w-16"
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="mb-8 text-center">
<h2 class="mb-4 text-3xl font-bold">Password Reset Complete!</h2>
<p class="text-base-content/70 mb-4">
Your password has been successfully reset.
</p>
<p class="text-base-content/60 text-sm">
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 %}