2025-05-29 22:40:58 +02:00

18 lines
497 B
HTML

{% extends "base.html" %}
{% block title %}404 - Not Found{% endblock %}
{% block content %}
<div class="container text-center mt-5">
<h1 class="display-4">404</h1>
<p class="lead">This paste has been deleted or has expired.</p>
<p>If you believe this is a mistake, please contact support.</p>
{% if current_user.is_authenticated %}
<a href="{{ url_for('user_dashboard') }}" class="btn btn-primary mt-3">Back to Dashboard</a>
{% endif %}
</div>
{% endblock %}