2017-03-17 14:16:08 +00:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 22:56:10 +00:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user signin openid">
|
2017-03-17 14:16:08 +00:00
|
|
|
{{template "user/auth/signin_navbar" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
2017-06-06 07:05:06 +00:00
|
|
|
<h4 class="ui top attached header center">
|
2021-05-22 21:29:46 +00:00
|
|
|
{{svg "fontawesome-openid"}}
|
2017-03-17 14:16:08 +00:00
|
|
|
OpenID
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2024-03-06 14:20:26 +00:00
|
|
|
<form class="ui form tw-m-auto" action="{{.Link}}" method="post">
|
2017-03-17 14:16:08 +00:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="inline field">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "auth.openid_signin_desc"}}
|
2017-03-17 14:16:08 +00:00
|
|
|
</div>
|
2024-03-06 14:20:26 +00:00
|
|
|
<div class="required field {{if .Err_OpenID}}error{{end}}">
|
2017-03-17 14:16:08 +00:00
|
|
|
<label for="openid">
|
2021-05-22 21:29:46 +00:00
|
|
|
{{svg "fontawesome-openid"}}
|
2017-03-17 14:16:08 +00:00
|
|
|
OpenID URI
|
|
|
|
</label>
|
2024-02-21 14:14:37 +00:00
|
|
|
<input id="openid" name="openid" value="{{.openid}}" autofocus required>
|
2017-03-17 14:16:08 +00:00
|
|
|
</div>
|
|
|
|
<div class="inline field">
|
|
|
|
<div class="ui checkbox">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "auth.remember_me"}}</label>
|
2017-03-17 14:16:08 +00:00
|
|
|
<input name="remember" type="checkbox">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="inline field">
|
2023-09-25 08:56:50 +00:00
|
|
|
<button class="ui primary button">{{ctx.Locale.Tr "sign_in"}}</button>
|
2017-03-17 14:16:08 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|