2 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
4 <title>Manage Permissions</title>
7 <p>Back <a href="home.html" th:href="@{/}">HOME</a></p>
9 <h1>Manage Permissions</h1>
17 <tr th:each="permission : ${permissions}">
18 <td th:text="${permission.name}">public_profile</td>
19 <td th:text="${permission.status}">granted</td>
20 <td th:text="${permission.granted}">true</td>
21 <td th:text="${permission.declined}">false</td>
24 <form action="#" th:action="@{/permissions.html}" method="POST">
25 <input type="text" name="scope" />
26 <input type="submit" value="Request permission" />