| {{ define "title" }}Consent{{ end }} | |
| {{ define "main" }} | |
| <form action="" method="POST"> | |
| {{ range . }} | |
| <label for="{{ . }}"> | |
| <input type="checkbox" role="switch" id="{{ . }}" name="scope" value="{{ . }}" checked />{{ . }} | |
| </label> | |
| {{ end }} | |
| <button type="submit" name="allow">Allow</button> | |
| <button type="submit" name="reject" class="secondary outline">Reject</button> | |
| </form> | |
| <nav> | |
| <ul> | |
| <li> | |
| <a href="/logout">Log Out</a> | |
| </li> | |
| </ul> | |
| </nav> | |
| {{ end }} |