10 lines
No EOL
353 B
HTML
10 lines
No EOL
353 B
HTML
{% extends 'base.html' %}
|
|
{% block title %}404 Page not found{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="container mx-auto max-w-md mt-12 text-center">
|
|
<h1 class="text-5xl font-bold mb-4">404</h1>
|
|
<p class="text-xl mb-4">Page not found</p>
|
|
<a href="{% url 'home' %}" class="btn btn-primary">Return Home</a>
|
|
</div>
|
|
{% endblock content %} |