2019-03-08 11:42:50 -05:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 17:56:10 -05:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content ui one column stackable center aligned page grid oauth2-authorize-application-box">
|
2019-03-08 11:42:50 -05:00
|
|
|
<div class="column seven wide">
|
|
|
|
<div class="ui middle centered raised segments">
|
|
|
|
<h3 class="ui top attached header">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "auth.authorize_title" .Application.Name}}
|
2019-03-08 11:42:50 -05:00
|
|
|
</h3>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<p>
|
2023-03-27 12:05:51 -04:00
|
|
|
<b>{{.locale.Tr "auth.authorize_application_description"}}</b><br>
|
2022-10-12 10:08:29 -04:00
|
|
|
{{.locale.Tr "auth.authorize_application_created_by" .ApplicationCreatorLinkHTML | Str2html}}
|
2019-03-08 11:42:50 -05:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div class="ui attached segment">
|
2022-06-27 16:58:46 -04:00
|
|
|
<p>{{.locale.Tr "auth.authorize_redirect_notice" .ApplicationRedirectDomainHTML | Str2html}}</p>
|
2019-03-08 11:42:50 -05:00
|
|
|
</div>
|
|
|
|
<div class="ui attached segment">
|
2019-10-23 17:04:22 -04:00
|
|
|
<form method="post" action="{{AppSubUrl}}/login/oauth/grant">
|
2019-03-08 11:42:50 -05:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<input type="hidden" name="client_id" value="{{.Application.ClientID}}">
|
|
|
|
<input type="hidden" name="state" value="{{.State}}">
|
2021-01-01 11:33:27 -05:00
|
|
|
<input type="hidden" name="scope" value="{{.Scope}}">
|
|
|
|
<input type="hidden" name="nonce" value="{{.Nonce}}">
|
2019-03-08 11:42:50 -05:00
|
|
|
<input type="hidden" name="redirect_uri" value="{{.RedirectURI}}">
|
2023-03-13 23:34:09 -04:00
|
|
|
<button type="submit" id="authorize-app" value="{{.locale.Tr "auth.authorize_application"}}" class="ui red inline button">{{.locale.Tr "auth.authorize_application"}}</button>
|
2019-03-08 11:42:50 -05:00
|
|
|
<a href="{{.RedirectURI}}" class="ui basic primary inline button">Cancel</a>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|