Fix blueprint naming and add missing templates
This commit is contained in:
29
templates/errors/500.html
Normal file
29
templates/errors/500.html
Normal file
@@ -0,0 +1,29 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Errore del Server - Hersel.it{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-6 text-center py-5">
|
||||
<div class="py-5">
|
||||
<i class="bi bi-exclamation-octagon-fill display-1 text-danger"></i>
|
||||
<h1 class="display-4 fw-bold mt-4">500</h1>
|
||||
<h2 class="mb-4">Errore del Server</h2>
|
||||
<p class="lead text-muted mb-4">
|
||||
Si è verificato un errore interno del server.
|
||||
Il problema è stato segnalato e verrà risolto al più presto.
|
||||
</p>
|
||||
<div class="d-flex gap-3 justify-content-center">
|
||||
<a href="{{ url_for('home.index') }}" class="btn btn-primary">
|
||||
<i class="bi bi-house"></i> Torna alla Home
|
||||
</a>
|
||||
<a href="javascript:history.back()" class="btn btn-outline-primary">
|
||||
<i class="bi bi-arrow-left"></i> Torna Indietro
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user