Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <div class="form-group">
  2. <label for="joueur1">Joueur 1</label>
  3. <select class="form-control" id="joueur1" placeholder="Pseudo" th:field="*{joueur1}">
  4. <option th:each="u : ${users}" th:value="${u.id}" th:text="${u.pseudo}"></option>
  5. </select>
  6. <div class="alert alert-danger" th:if="${#fields.hasErrors('joueur1')}" th:errors="*{joueur1}">Pseudo invalide</div>
  7. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement