Merge branch 'Johan'

This commit is contained in:
Parpaillax
2024-04-25 15:41:58 +02:00
12 changed files with 198 additions and 13 deletions

View File

@@ -37,7 +37,7 @@
<!-- Mise à prix -->
<div>
<label for="prix">Mise à prix:</label>
<input type="number" id="prix" th:field="*{prixInitial}" min="0" step="0.01" required>
<input type="number" id="prix" th:field="*{prixInitial}" min="0" max="2000000000" step="0.01" required>
</div>
<!-- Date début enchère -->
@@ -71,6 +71,11 @@
<div>
<button type="submit">Enregistrer</button>
</div>
<!-- En cas d'erreur -->
<div th:if="${param.erreur != null}">
<p style="color: red;" th:text="${param.erreur}"></p>
</div>
</form>
<form th:action="@{/accueil}" method="post">
<button type="submit">Annuler</button>