First Commit
This commit is contained in:
17
templates/404.html
Normal file
17
templates/404.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user