Files
tmhr/templates/error_pages/403.html
2024-02-23 10:30:02 +00:00

23 lines
603 B
HTML

{% extends "includes/base.html" %}
{% block title %} 404 Page {% endblock %}
{% block content %}
<div class="card shadow-lg mx-4 card-profile-bottom text-center">
<div class="card-body p-3 text-center">
<div class="row gx-4">
<div class="col-12">
<h3 class="mb-4 text-center">Error 403</h3>
<br />
<span class="mb-0 text-muted text-center">
You shouldn't be here! - <a href="/">Home</a>
</span>
</div>
</div>
</div>
</div>
{% endblock content %}