21 lines
685 B
HTML
21 lines
685 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Page Not Found - Quality App v2{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container py-5">
|
|
<div class="row">
|
|
<div class="col-md-8 mx-auto text-center">
|
|
<h1 class="display-1 text-danger mb-4">404</h1>
|
|
<h2 class="mb-3">Page Not Found</h2>
|
|
<p class="text-muted mb-4">
|
|
The page you are looking for could not be found. It may have been moved or deleted.
|
|
</p>
|
|
<a href="{{ url_for('main.dashboard') }}" class="btn btn-primary">
|
|
<i class="fas fa-home"></i> Back to Dashboard
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|