Added a second page to proof, that the connection is persisted
[examples/facebook-app] / src / main / resources / templates / home.html
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
3   <head>
4     <title>Home</title>
5   </head>
6   <body>
7     <h1>Hello, <span th:text="${user.name}">Some User</span>!</h1>
8     <ul>
9       <li><a href="connect/facebookConnected.html" th:href="@{/connect/facebook.html}">Show connection-status</a></li>
10       <li><a href="profile.html" th:href="@{/profile.html}">Show public profile-data</a></li>
11     </ul>
12   </body>
13 </html>