Files
TimeTracker/templates/errors/404.html
2025-08-16 21:49:43 +02:00

29 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% block title %}Page Not Found - {{ app_name }}{% endblock %}
{% block content %}
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 text-center">
<div class="py-5">
<i class="fas fa-exclamation-triangle fa-5x text-warning mb-4"></i>
<h1 class="display-4 text-muted">404</h1>
<h2 class="h4 mb-3">Page Not Found</h2>
<p class="text-muted mb-4">
The page you're looking for doesn't exist or has been moved.
</p>
<div class="d-grid gap-2 d-md-block">
<a href="{{ url_for('main.dashboard') }}" class="btn btn-primary">
<i class="fas fa-home"></i> Go to Dashboard
</a>
<a href="javascript:history.back()" class="btn btn-outline-secondary">
<i class="fas fa-arrow-left"></i> Go Back
</a>
</div>
</div>
</div>
</div>
</div>
{% endblock %}