Blame view

PFE06/src/main/resources/templates/home.html 557 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
  
16791f79   sfeutrie   routage du site
10
11
12
13
      <div th:switch="${customerRole}">
          <div th:case="'ADMIN'"><a th:href="@{/registration}">Enregistrer des utilisateurs</a></div>
          <div th:case="'USER'"></div>
      </div>
6029d52b   Antoine Duquenoy   Spring Security o...
14
15
16
17
      <form th:action="@{/logout}" method="GET">
          <button type="Submit">Logout </button>
      </form>
  
16791f79   sfeutrie   routage du site
18
      <h1><span th:text="${customerName}" th:remove="tag"></span> est connecté(e) !</h1>
6029d52b   Antoine Duquenoy   Spring Security o...
19
  
d0a03db7   sfeutrie   restructuration d...
20
21
  </body>
  </html>