18 lines
703 B
HTML
18 lines
703 B
HTML
{% 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 %}
|