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.
24 lines
647 B
24 lines
647 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Success</title>
|
|
<link rel="stylesheet" type="text/css" href="{{dir}}/public/css/inscription_success.css">
|
|
</head>
|
|
<body>
|
|
<h1>Inscription effectuée avec succès, vous pouvez désormais vous connecter</h1>
|
|
<p>Vous allez être redirigé vers la page de connexion dans 5 secondes</p>
|
|
<div class="three-body">
|
|
<div class="three-body__dot"></div>
|
|
<div class="three-body__dot"></div>
|
|
<div class="three-body__dot"></div>
|
|
</div>
|
|
<script>
|
|
setTimeout(function () {
|
|
window.location.href = "{{dir}}/connection";
|
|
}, 5000);
|
|
</script>
|
|
|
|
|
|
</body>
|
|
</html> |