transfer from private server/git server

This commit is contained in:
M1n-0
2026-08-21 09:12:02 +02:00
parent 45c8982178
commit 6ecb014238
75 changed files with 4344 additions and 274 deletions

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title>Accès refusé — GestHub</title>
<link rel="stylesheet" href="{{ url_for('static', filename='assets/css/index.css') }}" />
</head>
<body>
<main role="main" style="text-align:center; padding: 4rem 1rem;">
<h1>403 — Accès refusé</h1>
<p>Vous n'avez pas les droits nécessaires pour accéder à cette ressource.</p>
<a href="{{ url_for('dashboard.index') }}">Retour à l'accueil</a>
</main>
</body>
</html>

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title>Page introuvable — GestHub</title>
<link rel="stylesheet" href="{{ url_for('static', filename='assets/css/index.css') }}" />
</head>
<body>
<main role="main" style="text-align:center; padding: 4rem 1rem;">
<h1>404 — Page introuvable</h1>
<p>La ressource demandée n'existe pas.</p>
<a href="{{ url_for('dashboard.index') }}">Retour à l'accueil</a>
</main>
</body>
</html>

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title>Erreur serveur — GestHub</title>
<link rel="stylesheet" href="{{ url_for('static', filename='assets/css/index.css') }}" />
</head>
<body>
<main role="main" style="text-align:center; padding: 4rem 1rem;">
<h1>500 — Erreur interne</h1>
<p>Une erreur inattendue est survenue. L'équipe technique a été notifiée.</p>
<a href="{{ url_for('dashboard.index') }}">Retour à l'accueil</a>
</main>
</body>
</html>