forked from enviPath/enviPy
[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>
This commit is contained in:
@ -3,28 +3,38 @@
|
||||
{% 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>
|
||||
<!-- 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>
|
||||
</div>
|
||||
|
||||
<!-- Title -->
|
||||
<div class="text-center mb-8">
|
||||
<h2 class="text-3xl font-bold mb-4">Password Reset Complete!</h2>
|
||||
<!-- 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.
|
||||
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 class="text-base-content/60 text-sm">
|
||||
You can now sign in with your new password.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Actions -->
|
||||
<div class="space-y-4">
|
||||
<!-- Actions -->
|
||||
<div class="space-y-4">
|
||||
<a href="{% url 'login' %}" class="btn btn-primary w-full">Sign In</a>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user