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