Blame view

PFE06/src/main/resources/templates/home.html 454 Bytes
d0a03db7   sfeutrie   restructuration d...
1
2
3
4
5
6
7
8
  <!DOCTYPE html>
  <html xmlns:th="http://www.thymeleaf.org">
  <html lang="en">
  <head>
      <meta charset="UTF-8">
      <title>Page d'accueil</title>
  </head>
  <body>
6029d52b   Antoine Duquenoy   Spring Security o...
9
10
11
12
13
14
15
16
17
18
19
20
  
      <a th:href="@{/login}">Connexion</a>
      <a th:href="@{/registration}">Enregistrer des utilisateurs</a>
  
      <form th:action="@{/logout}" method="GET">
          <button type="Submit">Logout </button>
      </form>
  
  
      <h1 th:utext="${customerName}"> est connecté(e) !</h1>
  
  
d0a03db7   sfeutrie   restructuration d...
21
22
  </body>
  </html>