2023-09-06 22:20:09 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>1f349 ID</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<h1>1f349 ID</h1>
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<form method="POST" action="/authorize">
|
|
|
|
<div>The application {{.AppName}} wants to access your account ({{.User.Name}}). It requests the following permissions:</div>
|
|
|
|
<div>
|
|
|
|
<ul>
|
|
|
|
{{range .WantsList}}
|
2023-09-09 01:38:10 +01:00
|
|
|
<li>{{.}}</li>
|
2023-09-06 22:20:09 +01:00
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<input type="hidden" name="response_type" value="{{.ResponseType}}"/>
|
2023-09-09 01:38:10 +01:00
|
|
|
<input type="hidden" name="response_mode" value="{{.ResponseMode}}">
|
2023-09-06 22:20:09 +01:00
|
|
|
<input type="hidden" name="client_id" value="{{.ClientID}}"/>
|
2023-09-09 01:38:10 +01:00
|
|
|
<input type="hidden" name="redirect_uri" value="{{.RedirectUri}}"/>
|
2023-09-06 22:20:09 +01:00
|
|
|
<input type="hidden" name="state" value="{{.State}}"/>
|
2023-09-09 01:38:10 +01:00
|
|
|
<input type="hidden" name="scope" value="{{.Scope}}"/>
|
2023-09-06 22:20:09 +01:00
|
|
|
<input type="hidden" name="nonce" value="{{.Nonce}}"/>
|
|
|
|
<button class="oauth-action-authorize" name="oauth_action" value="authorize">Authorize</button>
|
|
|
|
<button class="oauth-action-cancel" name="oauth_action" value="cancel">Cancel</button>
|
|
|
|
</div>
|
2023-09-09 01:38:10 +01:00
|
|
|
<div>Authorizing this action will redirect you to {{.AppDomain}} with access to the permissions requested above.</div>
|
2023-09-06 22:20:09 +01:00
|
|
|
</form>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|