mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
f9bc305aca
* new styling for frontpage, update login and authorize templates * run go fmt * add AssetBaseDir to command flag parsing * untested: move landing page to it's own router * go fmt, fix typo * fix package, adapt to proper Route structure
15 lines
583 B
Cheetah
15 lines
583 B
Cheetah
{{ 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>
|
|
<button
|
|
type="submit"
|
|
style="width:200px;"
|
|
>
|
|
Allow
|
|
</button>
|
|
</p>
|
|
</form>
|
|
{{ template "footer.tmpl" .}} |