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

@@ -1,158 +1,123 @@
<!DOCTYPE html>
<html lang="fr" th:replace="~{modele-page :: layout('Modifier votre profile' , ~{::#link}, ~{::#container-main})}" xmlns:th="http://www.thymeleaf.org">
<html lang="fr" th:replace="~{modele-page :: layout('Modifier votre profil' , ~{::#link}, ~{::#container-main})}" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/fontawesome/css/all.css">
</head>
<body>
<div id="container-main">
<h1>Mon profil</h1>
<form th:action="@{/inscription/newUser}" method="post" th:object="${userProfile}">
<!--<div class="erreur-saisie" th:if="${#fields.hasErrors('*')}" >
<p th:text="#{index.erreurs}">Message d'erreur</p>
</div>-->
<!-- Champ pseudo-->
<div class="champ-saisie">
<label for="pseudo">Pseudo: </label>
<div>
<input type="text" th:field="*{pseudo}" id="pseudo" />
<div id="container-main" class="container mt-5">
<h1 th:text="#{edit.profil.title}"></h1>
<form th:action="@{/inscription/newUser}" method="post" th:object="${userProfile}" class="needs-validation" novalidate>
<div class="card">
<div class="card-body">
<!-- Iteration over form fields -->
<div class="mb-3">
<label for="pseudo" class="form-label" th:text="#{profil.pseudo}"></label>
<input type="text" class="form-control" th:field="*{pseudo}" id="pseudo" required>
<div th="if=${#fields.hasErrors('pseudo')}" class="invalid-feedback">
<ul>
<li th:each="err : ${#fields.errors('pseudo')}" th:text="${err}"></li>
</ul>
</div>
</div>
<div class="mb-3">
<label for="prenom" class="form-label" th:text="#{profil.surname}">:</label>
<input type="text" class="form-control" th:field="*{prenom}" id="prenom" required>
<div th="if=${#fields.hasErrors('prenom')}" class="invalid-feedback">
<ul>
<li th:each="err : ${#fields.errors('prenom')}" th:text="${err}"></li>
</ul>
</div>
</div>
<div class="mb-3">
<label for="nom" class="form-label" th:text="#{profil.name}"></label>
<input type="text" class="form-control" th:field="*{nom}" id="nom" required>
<div th="if=${#fields.hasErrors('nom')}" class="invalid-feedback">
<ul>
<li th:each="err : ${#fields.errors('nom')}" th:text="${err}"></li>
</ul>
</div>
</div>
<div class="mb-3">
<label for="email" class="form-label" th:text="#{profil.email}" ></label>
<input type="email" class="form-control" th:field="*{email}" id="email" required>
<div th="if=${#fields.hasErrors('email')}" class="invalid-feedback">
<ul>
<li th:each="err : ${#fields.errors('email')}" th:text="${err}"></li>
</ul>
</div>
</div>
<div class="mb-3">
<label for="telephone" class="form-label" th:text="#{profil.phone}"></label>
<input type="text" class="form-control" th:field="*{telephone}" id="telephone">
<div th="if=${#fields.hasErrors('telephone')}" class="invalid-feedback">
<ul>
<li th:each="err : ${#fields.errors('telephone')}" th:text="${err}"></li>
</ul>
</div>
</div>
<div class="mb-3">
<label for="rue" class="form-label" th:text="#{profil.street}"></label>
<input type="text" class="form-control" th:field="*{rue}" id="rue">
<div th="if=${#fields.hasErrors('rue')}" class="invalid-feedback">
<ul>
<li th:each="err : ${#fields.errors('rue')}" th:text="${err}"></li>
</ul>
</div>
</div>
<div class="mb-3">
<label for="code_postal" class="form-label" th:text="#{profil.postal}"></label>
<input type="text" class="form-control" th:field="*{code_postal}" id="code_postal">
<div th="if=${#fields.hasErrors('code_postal')}" class="invalid-feedback">
<ul>
<li th:each="err : ${#fields.errors('code_postal')}" th:text="${err}"></li>
</ul>
</div>
</div>
<div class="mb-3">
<label for="ville" class="form-label" th:text="#{profil.city}"></label>
<input type="text" class="form-control" th:field="*{ville}" id="ville">
<div th="if=${#fields.hasErrors('ville')}" class="invalid-feedback">
<ul>
<li th:each="err : ${#fields.errors('ville')}" th:text="${err}"></li>
</ul>
</div>
</div>
<div class="mb-3">
<label for="currentPassword" class="form-label" th:text="#{edit.profil.currentpassword}"></label>
<input type="password" class="form-control" th:field="*{currentPassword}" id="currentPassword">
</div>
<div class="mb-3">
<label for="newPassword" class="form-label" th:text="#{edit.profil.newpassword}"></label>
<input type="password" class="form-control" th:field="*{newPassword}" id="newPassword">
</div>
<div class="mb-3">
<label for="confirmPassword" class="form-label" th:text="#{edit.profil.confirmnewpassword}"></label>
<input type="password" class="form-control" id="confirmPassword" th:field="*{confirmPassword}">
</div>
<div class="mb-3">
<span th:text="#{profil.credit}"></span> <span th:text="${userProfile.credit}"></span>
</div>
<input type="hidden" th:field="*{id}" id="userId" th:value="${userProfile.id}">
<button type="submit" class="btn btn-primary" th:text="#{edit.profil.button.edit}"></button>
</div>
<span style="color: red;" th:if="${#fields.hasErrors('pseudo')}">
<ul>
<li th:each="erreur: ${#fields.errors('pseudo')}" th:text="${erreur}"></li>
</ul>
</span>
</div>
<!-- Champ prénom-->
<div class="champ-saisie">
<label for="prenom">Prénom: </label>
<div>
<input type="text" th:field="*{prenom}" id="prenom" />
</div>
<span style="color: red;" th:if="${#fields.hasErrors('prenom')}">
<ul>
<li th:each="erreur: ${#fields.errors('prenom')}" th:text="${erreur}"></li>
</ul>
</span>
</div>
<!-- Champ nom-->
<div class="champ-saisie">
<label for="nom">Nom: </label>
<div>
<input type="text" th:field="*{nom}" id="nom" />
</div>
<span style="color: red;" th:if="${#fields.hasErrors('nom')}">
<ul>
<li th:each="erreur: ${#fields.errors('nom')}" th:text="${erreur}"></li>
</ul>
</span>
</div>
<!-- Champ email-->
<div class="champ-saisie">
<label for="email">Email: </label>
<div>
<input type="email" th:field="*{email}" id="email" />
</div>
<span style="color: red;" th:if="${#fields.hasErrors('email')}">
<ul>
<li th:each="erreur: ${#fields.errors('email')}" th:text="${erreur}"></li>
</ul>
</span>
</div>
<!-- Champ téléphone-->
<div class="champ-saisie">
<label for="telephone">Téléphone: </label>
<div>
<input type="text" th:field="*{telephone}" id="telephone" />
</div>
<span style="color: red;" th:if="${#fields.hasErrors('telephone')}">
<ul>
<li th:each="erreur: ${#fields.errors('telephone')}" th:text="${erreur}"></li>
</ul>
</span>
</div>
<!-- Champ Rue-->
<div class="champ-saisie">
<label for="rue">Rue: </label>
<div>
<input type="text" th:field="*{rue}" id="rue" />
</div>
<span style="color: red;" th:if="${#fields.hasErrors('rue')}">
<ul>
<li th:each="erreur: ${#fields.errors('rue')}" th:text="${erreur}"></li>
</ul>
</span>
</div>
<!-- Champ Code postal-->
<div class="champ-saisie">
<label for="code_postal">Code postal: </label>
<div>
<input type="text" th:field="*{code_postal}" id="code_postal" />
</div>
<span style="color: red;" th:if="${#fields.hasErrors('code_postal')}">
<ul>
<li th:each="erreur: ${#fields.errors('code_postal')}" th:text="${erreur}"></li>
</ul>
</span>
</div>
<!-- Champ Ville-->
<div class="champ-saisie">
<label for="code_postal">Ville: </label>
<div>
<input type="text" th:field="*{ville}" id="ville" />
</div>
<span style="color: red;" th:if="${#fields.hasErrors('ville')}">
<ul>
<li th:each="erreur: ${#fields.errors('ville')}" th:text="${erreur}"></li>
</ul>
</span>
</div>
<!-- Champ Mot de passe actuel-->
<div class="champ-saisie">
<label for="currentPassword">Mot de passe actuel: </label>
<div>
<input type="password" th:field="*{currentPassword}" name="currentPassword" id="currentPassword" />
</div>
<span style="color: red;" th:if="${#fields.hasErrors('currentPassword')}">
<ul>
<li th:each="erreur: ${#fields.errors('currentPassword')}" th:text="${erreur}"></li>
</ul>
</span>
</div>
<!-- Champ Nouveau mot de passe-->
<div class="champ-saisie">
<label for="newPassword">Nouveau mot de passe: </label>
<div>
<input type="password" th:field="*{newPassword}" name="newPassword" id="newPassword" />
</div>
<span style="color: red;" th:if="${#fields.hasErrors('newPassword')}">
<ul>
<li th:each="erreur: ${#fields.errors('newPassword')}" th:text="${erreur}"></li>
</ul>
</span>
</div>
<!-- Champ Confirmation du nouveau mot de passe-->
<div class="champ-saisie">
<label for="confirmPassword">Confirmation du nouveau mot de passe: </label>
<div>
<input type="password" th:field="*{confirmPassword}" id="confirmPassword" />
</div>
<span style="color: red;" th:if="${#fields.hasErrors('confirmPassword')}">
<ul>
<li th:each="erreur: ${#fields.errors('confirmPassword')}" th:text="${erreur}"></li>
</ul>
</span>
</div>
<div>Crédits: <span th:text="${userProfile.credit}"></span></div>
<!-- Input cacher qui permet de stocker l'id du compte utilisateur à mettre à jour -->
<input type="hidden" id="userId" name="userId" th:field="*{id}" th:value="${userProfile.id}" />
<input type="submit" value="Enregistrer"/>
</form>
<form th:action="@{/profil/delete}" method="post">
<button type="submit">Supprimer mon compte</button>
<form th:action="@{/profil/delete}" method="post" class="mt-4">
<button type="submit" class="btn btn-danger" th:text="#{edit.profil.button.del}"></button>
</form>
</div>
<script src="js/bootstrap/bootstrap.min.js"></script>
<script src="js/bootstrap/bootstrap.bundle.min.js"></script>
</body>
</html>