SIDEL_ScriptsManager/app/templates/404.html

24 lines
888 B
HTML

{% extends "base.html" %}
{% block title %}Page Not Found - Scripts Manager{% endblock %}
{% block content %}
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-6 text-center">
<div class="card">
<div class="card-body">
<h1 class="display-1 text-muted">404</h1>
<h2 class="mb-3">Page Not Found</h2>
<p class="mb-4">The page you are looking for could not be found.</p>
<div class="d-grid gap-2">
<a href="{{ url_for('dashboard') }}" class="btn btn-primary">
<i class="bi bi-house-door"></i> Back to Dashboard
</a>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}