23 lines
595 B
HTML
23 lines
595 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 404</h3>
|
|
<br />
|
|
<span class="mb-0 text-muted text-center">
|
|
Page not found - <a href="/">Home</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content %}
|