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/500.html Normal file
View File

@@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block title %}Errore del Server - 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: #ff6b6b; margin-bottom: 1rem;">500</h1>
<h2 style="color: #495057; margin-bottom: 2rem;">Errore del Server</h2>
<p style="color: #868e96; margin-bottom: 2rem;">
Si è verificato un errore interno. Riprova tra qualche istante.
</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 %}