gotosocial/web/template/authorize.tmpl

15 lines
583 B
Cheetah
Raw Normal View History

{{ template "header.tmpl" .}}
<form action="/oauth/authorize" method="POST">
<h1>Hi {{.user}}!</h1>
<p>Application <b>{{.appname}}</b> {{if len .appwebsite | eq 0 | not}}({{.appwebsite}}) {{end}}would like to perform actions on your behalf, with scope <em>{{.scope}}</em>.</p>
<p>The application will redirect to {{.redirect}} to continue.</p>
<p>
2021-03-18 22:27:43 +00:00
<button
type="submit"
style="width:200px;"
2021-03-18 22:27:43 +00:00
>
Allow
2021-03-18 22:27:43 +00:00
</button>
</p>
</form>
{{ template "footer.tmpl" .}}