changed homepage style, account confirmation style, payment style, account confirmation expired style

This commit is contained in:
2025-06-17 10:50:34 +02:00
parent 82efbd491a
commit 45d585575f

View File

@@ -1,13 +1,17 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block content %} {% block content %}
<div class="container"> <section class="py-16 bg-secondary sm:py-24 p-body-full">
<div class="row"> <div class="max-w-lg w-full mx-auto text-center shadow-lg border border-success rounded-xl p-8 bg-white">
<div class="col"> <h2 class="text-3xl font-extrabold mb-4 text-success">Thank you.</h2>
<h1 class="pt-4 mt-5 mb-4">Thank you.</h1> <p class="mb-8 text-gray-700 text-lg">
We will send the document to {{ email }} when it is ready. We will send the document to {{ email }} when it is ready.
</div> </p>
</div> <a href="{% url 'core:index' %}" class="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">
</div> Go back to Homepage
</a>
</div>
</section>
{% endblock content %} {% endblock content %}
{% block bottom %} {% block bottom %}