2019-03-08 17:42:50 +01:00
{{ template "base/head" . }}
2023-02-01 23:56:10 +01: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 17:42:50 +01:00
< div class = "column seven wide" >
< div class = "ui middle centered raised segments" >
< h3 class = "ui top attached header" >
2023-09-25 10:56:50 +02:00
{{ ctx .Locale.Tr "auth.authorize_title" .Application.Name }}
2019-03-08 17:42:50 +01:00
< / h3 >
< div class = "ui attached segment" >
{{ template "base/alert" . }}
< p >
2023-09-25 10:56:50 +02:00
< b > {{ ctx .Locale.Tr "auth.authorize_application_description" }} </ b >< br >
{{ ctx .Locale.Tr "auth.authorize_application_created_by" .ApplicationCreatorLinkHTML | Str2html }}
2019-03-08 17:42:50 +01:00
< / p >
< / div >
< div class = "ui attached segment" >
2023-09-25 10:56:50 +02:00
< p > {{ ctx .Locale.Tr "auth.authorize_redirect_notice" .ApplicationRedirectDomainHTML | Str2html }} </ p >
2019-03-08 17:42:50 +01:00
< / div >
< div class = "ui attached segment" >
2019-10-23 23:04:22 +02:00
< form method = "post" action = " {{ AppSubUrl }} /login/oauth/grant" >
2019-03-08 17:42:50 +01:00
{{ .CsrfTokenHtml }}
< input type = "hidden" name = "client_id" value = " {{ .Application.ClientID }} " >
< input type = "hidden" name = "state" value = " {{ .State }} " >
2021-01-01 17:33:27 +01:00
< input type = "hidden" name = "scope" value = " {{ .Scope }} " >
< input type = "hidden" name = "nonce" value = " {{ .Nonce }} " >
2019-03-08 17:42:50 +01:00
< input type = "hidden" name = "redirect_uri" value = " {{ .RedirectURI }} " >
2023-09-25 14:42:40 +02:00
< button type = "submit" id = "authorize-app" value = " {{ ctx .Locale.Tr "auth.authorize_application" }} " class = "ui red inline button" > {{ ctx .Locale.Tr "auth.authorize_application" }} </ button >
2019-03-08 17:42:50 +01:00
< a href = " {{ .RedirectURI }} " class = "ui basic primary inline button" > Cancel</ a >
< / form >
< / div >
< / div >
< / div >
< / div >
{{ template "base/footer" . }}