theraPy/templates/no_result.html

15 lines
694 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
2024-09-09 17:32:55 +02:00
<div class="container mx-auto px-4 py-6">
<div class="flex flex-col">
<div class="w-full">
<h2 class="text-2xl font-bold mb-4">Keine Ergebnisse</h2>
<div class="bg-blue-100 border border-blue-400 text-blue-700 px-4 py-3 rounded relative">
<strong class="font-bold">Keine Telefonzeiten mit gegebenem Standort und Distanz gefunden</strong>
<span class="block sm:inline"> <a href="/" class="text-blue-500 underline">Zurück zur Suche</a>, um es erneut zu versuchen</span>
</div>
</div>
</div>
</div>
{% endblock %}