deev.space/templates/errors/500.html
2025-12-03 04:39:24 +03:00

26 lines
No EOL
984 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'wrapper.html' %}
{% load static %}
{% block title %}Ошибка сервера — deev.space{% endblock %}
{% block content %}
<div class="error-container">
<div class="error-card" data-aos="fade-up">
<div class="error-code">500</div>
<h1 class="error-title">Ошибка сервера</h1>
<p class="error-description">
Произошла внутренняя ошибка сервера. Мы уже работаем над её устранением.
</p>
<div class="error-actions">
<a href="{% url 'index' %}" class="btn btn-primary">
<i class="fas fa-home"></i>
На главную
</a>
<button onclick="location.reload()" class="btn btn-outline">
<i class="fas fa-redo"></i>
Обновить страницу
</button>
</div>
</div>
</div>
{% endblock %}