Released version 1.0.0
[examples/facebook-app] / src / main / resources / thymeleaf / signin.html
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
3   <head>
4     <title>Sign In</title>
5   </head>
6   <body>
7     <form action="#" th:action="@{/signin/facebook}" method="POST">
8       <input type="hidden" name="scope" value="public_profile,manage_pages" />
9       <button type="submit">Sign in with Facebook</button>
10     </form>
11   </body>
12 </html>