First Commit

This commit is contained in:
dedhersel
2026-02-17 12:43:27 +01:00
commit 38f85dc498
26 changed files with 9939 additions and 0 deletions

17
templates/404.html Normal file
View File

@@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block title %}Pagina non trovata - Proxmox Manager{% endblock %}
{% block content %}
<div style="text-align: center; padding: 4rem 2rem;">
<div style="font-size: 6rem; margin-bottom: 1rem;">🔍</div>
<h1 style="font-size: 3rem; color: #667eea; margin-bottom: 1rem;">404</h1>
<h2 style="color: #495057; margin-bottom: 2rem;">Pagina non trovata</h2>
<p style="color: #868e96; margin-bottom: 2rem;">
La pagina che stai cercando non esiste o è stata spostata.
</p>
<a href="{{ url_for('dashboard') if current_user.is_authenticated else url_for('login') }}" class="btn btn-primary">
Torna alla Home
</a>
</div>
{% endblock %}