Force connection HTTPS, proxy-inversé, WSGI de production, reset cookie de conncection à chaque reconnection, limite sur les mdp, fichiers et One on One par minute, verification d'injection de SQL dans les champs d'entrées. renommage des fichiers lors du téléchargement, fichier de backup quotidien pour la bd et j'ai oublié quelque chose :(
15 lines
652 B
HTML
15 lines
652 B
HTML
{% extends "layouts/base.html" %}
|
|
{% block title %}500 Server Error - TryoutPro{% endblock %}
|
|
{% block page_title %}Internal Server Error{% endblock %}
|
|
{% block content %}
|
|
<div class="error-container">
|
|
<div class="error-icon">
|
|
<i class="fas fa-cogs"></i>
|
|
</div>
|
|
<h2>500 — Internal Server Error</h2>
|
|
<p>Something went wrong on our end. The error has been logged and will be investigated. Please try again later.</p>
|
|
<a href="{{ url_for('main.dashboard') if current_user.is_authenticated else url_for('auth.login') }}" class="btn btn-primary">
|
|
<i class="fas fa-redo-alt"></i> Try Again
|
|
</a>
|
|
</div>
|
|
{% endblock %} |