Correction validation all formulaire

This commit is contained in:
jleroy
2024-04-25 12:48:30 +02:00
parent c536001a04
commit bd32e620f7
5 changed files with 99 additions and 16 deletions

View File

@@ -6,7 +6,7 @@
<body>
<!-- Ajouter la page de nav bar -->
<div id="container-main">
<form th:action="@{/inscription/newUser}" method="post" th:object="${user}">
<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>-->
@@ -14,7 +14,7 @@
<div class="champ-saisie">
<label for="pseudo">Pseudo: </label>
<div>
<input type="text" th:field="*{pseudo}" id="pseudo"/>
<input type="text" th:field="*{pseudo}" id="pseudo" required/>
</div>
<span style="color: red;" th:if="${#fields.hasErrors('pseudo')}">
<ul>
@@ -26,7 +26,7 @@
<div class="champ-saisie">
<label for="prenom">Prénom: </label>
<div>
<input type="text" th:field="*{prenom}" id="prenom" />
<input type="text" th:field="*{prenom}" id="prenom" required/>
</div>
<span style="color: red;" th:if="${#fields.hasErrors('prenom')}">
<ul>
@@ -38,7 +38,7 @@
<div class="champ-saisie">
<label for="nom">Nom: </label>
<div>
<input type="text" th:field="*{nom}" id="nom" />
<input type="text" th:field="*{nom}" id="nom" required/>
</div>
<span style="color: red;" th:if="${#fields.hasErrors('nom')}">
<ul>
@@ -50,7 +50,7 @@
<div class="champ-saisie">
<label for="email">Email: </label>
<div>
<input type="email" th:field="*{email}" id="email" />
<input type="email" th:field="*{email}" id="email" required/>
</div>
<span style="color: red;" th:if="${#fields.hasErrors('email')}">
<ul>
@@ -74,7 +74,7 @@
<div class="champ-saisie">
<label for="rue">Rue: </label>
<div>
<input type="text" th:field="*{rue}" id="rue" />
<input type="text" th:field="*{rue}" id="rue" required/>
</div>
<span style="color: red;" th:if="${#fields.hasErrors('rue')}">
<ul>
@@ -86,7 +86,7 @@
<div class="champ-saisie">
<label for="code_postal">Code postal: </label>
<div>
<input type="text" th:field="*{code_postal}" id="code_postal" />
<input type="text" th:field="*{code_postal}" id="code_postal" required/>
</div>
<span style="color: red;" th:if="${#fields.hasErrors('code_postal')}">
<ul>
@@ -98,7 +98,7 @@
<div class="champ-saisie">
<label for="code_postal">Ville: </label>
<div>
<input type="text" th:field="*{ville}" id="ville" />
<input type="text" th:field="*{ville}" id="ville" required/>
</div>
<span style="color: red;" th:if="${#fields.hasErrors('ville')}">
<ul>
@@ -109,7 +109,7 @@
<div class="champ-saisie">
<label for="password">Mot de passe: </label>
<div>
<input type="password" th:field="*{password}" id="password" />
<input type="password" th:field="*{password}" id="password" required/>
</div>
<span style="color: red;" th:if="${#fields.hasErrors('password')}">
<ul>
@@ -120,7 +120,7 @@
<div class="champ-saisie">
<label for="confirmPassword">Confirmation du mot de passe: </label>
<div>
<input type="password" id="confirmPassword" />
<input type="password" name="confirmPassword" id="confirmPassword" required/>
</div>
</div>
<input type="submit" value="Créer" />