mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-01-20 11:29:57 -06:00
29 lines
1.1 KiB
HTML
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 %}
|