1er commit

This commit is contained in:
ines
2025-01-09 21:29:22 +01:00
commit 7ae77d8766
43 changed files with 3654 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<jsp:include page="../shared/EnteteJSP.jsp" />
<jsp:include page="../shared/NavigationJSP.jsp"/>
<div class="container mt-5">
<h1 class="text-center">Informations du Pompier</h1>
<table class="table table-bordered table-striped">
<tr>
<th>ID</th>
<td>${pompier.idPompier}</td>
</tr>
<tr>
<th>Nom</th>
<td>${pompier.nom}</td>
</tr>
<tr>
<th>Pr<50>nom</th>
<td>${pompier.prenom}</td>
</tr>
<tr>
<th>Login</th>
<td>${pompier.login}</td>
</tr>
<tr>
<th>Adresse</th>
<td>${pompier.adresse}, ${pompier.ville}, ${pompier.cp} </td>
</tr>
</table>
</div>
<jsp:include page="../shared/FooterJSP.jsp" />