fichier langue / bootstrap

This commit is contained in:
mepiphana2023
2024-04-24 12:15:04 +02:00
parent 3faaeffa70
commit 666416d2f3
6 changed files with 172 additions and 166 deletions

View File

@@ -9,49 +9,49 @@
<div class="col-md-6 offset-md-3">
<div class="card">
<div class="card-header">
<h4>Mon profil</h4>
<h4 th:text="#{profil.title}"></h4>
</div>
<div class="card-body">
<ul class="list-group">
<li class="list-group-item">
<strong><label class="col-form-label">Pseudo:</label></strong>
<strong><label class="col-form-label" th:text="#{profil.pseudo}"></label></strong>
<span th:text="${userProfile.pseudo}"></span>
</li>
<li class="list-group-item">
<strong><label class="col-form-label">Prénom:</label></strong>
<strong><label class="col-form-label" th:text="#{profil.surname}"></label></strong>
<span th:text="${userProfile.prenom}"></span>
</li>
<li class="list-group-item">
<strong><label class="col-form-label">Nom:</label></strong>
<strong><label class="col-form-label" th:text="#{profil.name}"></label></strong>
<span th:text="${userProfile.nom}"></span>
</li>
<li class="list-group-item">
<strong><label class="col-form-label">Email:</label></strong>
<strong><label class="col-form-label" th:text="#{profil.email}"></label></strong>
<span th:text="${userProfile.email}"></span>
</li>
<li class="list-group-item">
<strong><label class="col-form-label">Téléphone:</label></strong>
<strong><label class="col-form-label" th:text="#{profil.phone}"></label></strong>
<span th:text="${userProfile.telephone}"></span>
</li>
<li class="list-group-item">
<strong><label class="col-form-label">Rue:</label></strong>
<strong><label class="col-form-label" th:text="#{profil.street}"></label></strong>
<span th:text="${userProfile.rue}"></span>
</li>
<li class="list-group-item">
<strong><label class="col-form-label">Code postal:</label></strong>
<strong><label class="col-form-label" th:text="#{profil.postal}"></label></strong>
<span th:text="${userProfile.code_postal}"></span>
</li>
<li class="list-group-item">
<strong><label class="col-form-label">Ville:</label></strong>
<strong><label class="col-form-label" th:text="#{profil.city}">Ville:</label></strong>
<span th:text="${userProfile.ville}"></span>
</li>
<li class="list-group-item">
<strong><label class="col-form-label">Crédits:</label></strong>
<strong><label class="col-form-label" th:text="#{profil.credit}"></label></strong>
<span th:text="${userProfile.credit}"></span>
</li>
</ul>
<form th:action="@{/profil/edit}" method="post" class="mt-3">
<button type="submit" class="btn btn-primary">Modifier</button>
<button type="submit" class="btn btn-primary" th:text="#{profil.button}"></button>
</form>
</div>
</div>