33 lines
986 B
Handlebars
33 lines
986 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>Réserver un des cadeaux</title>
|
|
<link rel="stylesheet" href="/styles.css">
|
|
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
</head>
|
|
<body>
|
|
<div class="container mt-4">
|
|
<div class="mt-4 p-5 bg-primary text-white rounded">
|
|
<h1>Réserver ce cadeau</h1>
|
|
<p>{{ message }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container mt-4">
|
|
<figure class="figure">
|
|
<img src="{{photo}}" class="figure-img img-fluid rounded" alt="Pas d'image">
|
|
<figcaption class="figure-caption text-center">{{libelle}}</figcaption>
|
|
</figure>
|
|
<span></span>
|
|
</div>
|
|
|
|
<div class="container mt-4">
|
|
<a href="/" class="btn btn-primary">Retour à la liste</a>
|
|
</div>
|
|
</body>
|
|
</html>
|