26 lines
706 B
Handlebars
26 lines
706 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="/styles.css">
|
|
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
</head>
|
|
<body>
|
|
{{!-- Navigation links --}}
|
|
<nav>
|
|
<a href="/"><h4>Accueil</h4></a>
|
|
</nav>
|
|
|
|
{{!-- Body --}}
|
|
<div class="container mt-4">
|
|
<div class="mt-4 p-5 bg-primary text-white rounded">
|
|
<h1>Bravo : connexion réussie</h1>
|
|
<p>Bienvenue sur le projet MIA...</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |