| gio | dd21315 | 2024-09-27 11:26:59 +0200 | [diff] [blame] | 1 | {{ define "title" }}dodo: consent{{ end }} |
| Giorgi Lekveishvili | 58cb148 | 2023-12-04 12:33:49 +0400 | [diff] [blame] | 2 | {{ define "main" }} |
| 3 | <form action="" method="POST"> |
| 4 | {{ range . }} |
| 5 | <label for="{{ . }}"> |
| 6 | <input type="checkbox" role="switch" id="{{ . }}" name="scope" value="{{ . }}" checked />{{ . }} |
| 7 | </label> |
| 8 | {{ end }} |
| 9 | <button type="submit" name="allow">Allow</button> |
| 10 | <button type="submit" name="reject" class="secondary outline">Reject</button> |
| 11 | </form> |
| 12 | <nav> |
| 13 | <ul> |
| 14 | <li> |
| 15 | <a href="/logout">Log Out</a> |
| 16 | </li> |
| 17 | </ul> |
| 18 | </nav> |
| 19 | {{ end }} |