blob: 703434b30d4a10426ef37a46e8844d320aa0f1ac [file] [log] [blame]
giodd213152024-09-27 11:26:59 +02001{{ define "title" }}dodo: consent{{ end }}
Giorgi Lekveishvili58cb1482023-12-04 12:33:49 +04002{{ 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 }}