forked from enviPath/enviPy
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>
43 lines
1.3 KiB
HTML
43 lines
1.3 KiB
HTML
{% extends "static/login_base.html" %}
|
|
|
|
{% block title %}enviPath - Reset Email Sent{% 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="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>
|
|
</div>
|
|
|
|
<!-- Title -->
|
|
<div class="mb-8 text-center">
|
|
<h2 class="mb-4 text-3xl font-bold">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-base-content/60 text-sm">
|
|
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 %}
|