blob: 703434b30d4a10426ef37a46e8844d320aa0f1ac [file] [log] [blame]
{{ define "title" }}dodo: 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 }}