mirror of
https://github.com/Sudo-JHare/FHIRVINE-Smart-Proxy.git
synced 2025-06-15 20:50:00 +00:00
20 lines
734 B
HTML
20 lines
734 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}404 - Not Found - {{ site_name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container mt-4">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8">
|
|
<div class="card shadow-sm">
|
|
<div class="card-body text-center">
|
|
<h1 class="display-1 text-danger">404</h1>
|
|
<h2>Page Not Found</h2>
|
|
<p class="text-muted mb-4">The page you're looking for doesn't exist or has been moved.</p>
|
|
<a href="{{ url_for('index') }}" class="btn btn-primary">Return to Home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |