Blame view

PFE06/src/main/resources/templates/registration.html 1.4 KB
d0a03db7   sfeutrie   restructuration d...
1
2
3
4
5
6
7
8
  <!DOCTYPE html>
  <html xmlns:th="http://www.thymeleaf.org">
  <head>
      <title>Ajout d'utilisateurs</title>
      <meta charset="utf-8"/>
  </head>
  <body>
  <div>
66a8b43c   Antoine Duquenoy   Intégration du fr...
9
      <h1><span th:text="${customerName}" th:remove="tag"></span> est connecté(e) !</h1>
d0a03db7   sfeutrie   restructuration d...
10
11
12
13
14
15
16
17
18
19
      <h5>Ajout d'utilisateurs :</h5>
      <form th:action="@{/registration}" method="POST">
          <div class="form1">
              <label for="username">User Name: </label>
              <input type="text" id="username" placeholder="Enter UserName" name="pseudo"/>
          </div>
          <div class="form2">
              <label for="password">Password: </label>
              <input type="password" id="password" placeholder="Enter Password" name="password"/>
          </div>
16791f79   sfeutrie   routage du site
20
21
22
23
24
25
26
          <div class="form3">
                  <input type="radio" id="role1" name="role" value="ADMIN">
                  <label for="role1">Admin</label>
  
                  <input type="radio" id="role2" name="role" value="USER" checked="checked"> <!-- "checked" empeche l'utilisateur de ne rien séléctionner -->
                  <label for="role2">User</label>
          </div>
d0a03db7   sfeutrie   restructuration d...
27
28
29
          <button type="submit">Ajouter</button>
      </form>
      <span th:utext="${ok}"></span>
16791f79   sfeutrie   routage du site
30
      <a th:href="@{/home}">Accueil</a>
d0a03db7   sfeutrie   restructuration d...
31
32
33
34
35
36
37
38
39
      <!--<div th:if="${param.ok}">
          <span>L'utilisateur a été ajouté !</span>
      </div>
      <div th:if="${param.fail}">
          <span>Le pseudo existe déjà !</span>
      </div>-->
  </div>
  </body>
  </html>