29 lines
807 B
Plaintext
29 lines
807 B
Plaintext
<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é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" /> |