2025-02-21 00:53:18 +01:00
|
|
|
{% extends "base.html" %}
|
2025-02-13 16:38:29 +01:00
|
|
|
|
2025-06-09 13:48:34 +02:00
|
|
|
{% block content %}
|
2025-06-17 10:37:46 +02:00
|
|
|
<section class="py-16 bg-white min-h-[60vh] flex items-center justify-center">
|
|
|
|
|
<div class="max-w-lg w-full mx-auto text-center shadow-lg border border-accent rounded-xl p-8">
|
|
|
|
|
<h2 class="text-3xl font-extrabold mb-4 text-accent">Link has expired!</h2>
|
|
|
|
|
<p class="mb-8 text-gray-700 text-lg">
|
|
|
|
|
The confirmation link you used has expired or is no longer valid.<br>
|
|
|
|
|
Please click the button below to receive a new confirmation link.
|
|
|
|
|
</p>
|
|
|
|
|
<form method="POST">
|
|
|
|
|
{% csrf_token %}
|
|
|
|
|
<button type="submit" class="nav-link-desktop bg-transparent border-2 border-accent text-accent hover:bg-accent hover:text-primary font-semibold py-3 px-8 rounded-lg text-lg transition-all duration-300 ease-in-out">
|
|
|
|
|
Resend link
|
|
|
|
|
</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
2025-02-17 20:36:59 +01:00
|
|
|
{% endblock %}
|