UniSquat_Python/templates/error.html

18 lines
389 B
HTML

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>UniSquat</title>
<link rel="stylesheet" type="text/css" href="../static/style.css">
<meta name="viewport" content="width=300, initial-scale=1" />
</head>
<body>
{% include "base.html" %}
<main>
<h2>Erreur !</h2>
<p>{{ error }}</p>
</main>
{% include "footer.html" %}
</body>
</html>