51 lines
1.2 KiB
HTML
51 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<!--- Variables
|
|
nom
|
|
prenom
|
|
nb_sauvetages
|
|
nb_sauves
|
|
gratifications
|
|
description
|
|
!-->
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{nom}} {{prenom}} - Sauveuteurs du dunkerquois</title>
|
|
<link href="../static/style.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<header id="banner">
|
|
<img src="../static/icon.png" width="150" height="75">
|
|
<span id="logo_title">Sauveuteurs du dunkerquois</span>
|
|
</header>
|
|
<br>
|
|
<form class="searchbar" method=get>
|
|
<input type="text" placeholder="Saisissez votre recherche..." size=20>
|
|
<input type="submit" value="Rechercher">
|
|
</form>
|
|
<h1>{{nom}} {{prenom}}</h1>
|
|
<div class="article">
|
|
<p>{{description}}Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non risus.</p>
|
|
<p class="right-align">
|
|
<table>
|
|
<tr>
|
|
<td class="table_key">Nom</td><td>{{nom}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="table_key">Prénom</td><td>{{prenom}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="table_key">Sauvetages effectués</td><td>{{nb_sauvetages}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="table_key">Personnes sauvées</td><td>{{nb_sauves}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="table_key">Gratifications</td><td>{{gratifications}}</td>
|
|
</tr>
|
|
</table>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|