You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
677 B
29 lines
677 B
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" type="text/css" href="public/css/erreur.css">
|
|
<title>Alica - Erreur</title>
|
|
</head>
|
|
|
|
<style>
|
|
body{
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
|
|
{% include "menu.html" %}
|
|
<body>
|
|
<h1>Erreur</h1>
|
|
{% if dVueErreur is defined %}
|
|
{% for value in dVueErreur %}
|
|
<p>{{value}}</p>
|
|
{% endfor %}
|
|
{% endif %}
|
|
<form action="accueil" method="POST">
|
|
<input type="submit" value="Retourner à l'accueil">
|
|
</form>
|
|
</body>
|
|
</html>
|