Sudo-JHare c0f16c8971 .well-known updates
updated UI to show .well-known config in server and client pages.
2025-05-26 16:17:39 +10:00

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 %}