Blame view

PFE06/src/main/resources/templates/login.html 1.09 KB
e1305e8c   sfeutrie   projet Spring boo...
1
2
3
  <!DOCTYPE html>
  <html xmlns:th="http://www.thymeleaf.org">
  <head>
d0a03db7   sfeutrie   restructuration d...
4
      <title>Page de connexion</title>
e1305e8c   sfeutrie   projet Spring boo...
5
6
7
8
      <meta charset="utf-8"/>
  </head>
      <body>
          <div>
d0a03db7   sfeutrie   restructuration d...
9
              <h5>Ajouter de nouveaux utilisateurs :</h5>
e743b1b9   Antoine Duquenoy   Ajout d'un utilis...
10
              <form th:action="@{/login}" method="POST">
e1305e8c   sfeutrie   projet Spring boo...
11
12
13
14
15
16
17
18
                  <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>
d0a03db7   sfeutrie   restructuration d...
19
                  <button type="submit">se connecter</button>
e1305e8c   sfeutrie   projet Spring boo...
20
              </form>
d0a03db7   sfeutrie   restructuration d...
21
22
              <span th:utext="${error}"></span>
              <!--<div th:if="${param.ok}">
e743b1b9   Antoine Duquenoy   Ajout d'un utilis...
23
24
                  <span>L'utilisateur a été ajouté !</span>
              </div>
d0a03db7   sfeutrie   restructuration d...
25
              <div th:if="${param.fail}">
e743b1b9   Antoine Duquenoy   Ajout d'un utilis...
26
                  <span>Le pseudo existe déjà !</span>
d0a03db7   sfeutrie   restructuration d...
27
              </div>-->
e1305e8c   sfeutrie   projet Spring boo...
28
29
30
          </div>
      </body>
  </html>