2017-03-17 15:16:08 +01:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 23:56:10 +01:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user signup">
|
2017-03-17 15:16:08 +01:00
|
|
|
{{template "user/auth/signup_openid_navbar" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "auth.openid_connect_title"}}
|
2017-03-17 15:16:08 +01:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<p>
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "auth.openid_connect_desc"}}
|
2017-03-17 15:16:08 +01:00
|
|
|
</p>
|
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="required inline field {{if .Err_UserName}}error{{end}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="user_name">{{ctx.Locale.Tr "home.uname_holder"}}</label>
|
2020-07-15 15:48:50 +02:00
|
|
|
<input id="user_name" type="text" name="user_name" value="{{.user_name}}" autofocus required>
|
2017-03-17 15:16:08 +01:00
|
|
|
</div>
|
|
|
|
<div class="required inline field {{if .Err_Password}}error{{end}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="password">{{ctx.Locale.Tr "password"}}</label>
|
2017-03-17 15:16:08 +01:00
|
|
|
<input id="password" name="password" type="password" value="{{.password}}" autocomplete="off" required>
|
|
|
|
</div>
|
|
|
|
<div class="inline field">
|
2017-03-20 02:50:24 +01:00
|
|
|
<label for="openid">OpenID URI</label>
|
2022-08-31 17:58:54 +02:00
|
|
|
<input id="openid" value="{{.OpenID}}" readonly>
|
2017-03-17 15:16:08 +01:00
|
|
|
</div>
|
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
2023-09-25 10:56:50 +02:00
|
|
|
<button class="ui primary button">{{ctx.Locale.Tr "auth.openid_connect_submit"}}</button>
|
|
|
|
<a href="{{AppSubUrl}}/user/forgot_password">{{ctx.Locale.Tr "auth.forgot_password"}}</a>
|
2017-03-17 15:16:08 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|