blob: 9131e996ad9a508279f9eca06824d0fcf80e86dd [file] [log] [blame]
giolekva788dc6e2021-10-25 20:40:53 +04001<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="utf-8" />
5 <title>Consent</title>
6</head>
7<body>
8 <a href="/">whoami</a>
9 <a href="/login">login</a>
10 <a href="/logout">logout</a>
11 <a href="/registration">registration</a><br/>
12 <form action="" method="POST">
13 {{range .}}
14 <input type="checkbox" name="scope" value="{{.}}" />{{.}}<br />
15 {{end}}
16 <input type="submit" name="allow" value="Allow" />
17 <input type="submit" name="reject" value="Reject" />
18 </form>
19</body>
20</html>
21