forked from
oppi.li/at-advent
this repo has no description
1{% extends "layout.askama.html" %}
2
3{% block content %}
4<div class="hero min-h-[60vh]">
5 <div class="hero-content text-center">
6 <div class="max-w-md">
7 <div class="text-9xl mb-4">⚠️</div>
8 <h1 class="text-5xl font-bold mb-4">Oops!</h1>
9 <div class="alert alert-error mb-6">
10 <svg xmlns="http://www.w3.org/2000/svg" class="stroke-current shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24">
11 <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z" />
12 </svg>
13 <span>{{ message }}</span>
14 </div>
15 <a href="/" class="btn btn-primary">Return Home</a>
16 </div>
17 </div>
18</div>
19{% endblock %}