mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
d55a0b7238
* Refactor `i18n` to `locale` - Currently we're using the `i18n` variable naming for the `locale` struct. This contains locale's specific information and cannot be used for general i18n purpose, therefore refactoring it to `locale` makes more sense. - Ref: https://github.com/go-gitea/gitea/pull/20096#discussion_r906699200 * Update routers/install/install.go
39 lines
1.1 KiB
Handlebars
39 lines
1.1 KiB
Handlebars
{{template "base/head" .}}
|
|
<div class="page-content user signin openid">
|
|
{{template "user/auth/signin_navbar" .}}
|
|
<div class="ui container">
|
|
{{template "base/alert" .}}
|
|
<h4 class="ui top attached header center">
|
|
{{svg "fontawesome-openid"}}
|
|
OpenID
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<div class="inline field">
|
|
{{.locale.Tr "auth.openid_signin_desc"}}
|
|
</div>
|
|
<div class="required inline field {{if .Err_OpenID}}error{{end}}">
|
|
<label for="openid">
|
|
{{svg "fontawesome-openid"}}
|
|
OpenID URI
|
|
</label>
|
|
<input id="openid" name="openid" value="{{.openid}}" autofocus required>
|
|
</div>
|
|
<div class="inline field">
|
|
<label></label>
|
|
<div class="ui checkbox">
|
|
<label>{{.locale.Tr "auth.remember_me"}}</label>
|
|
<input name="remember" type="checkbox">
|
|
</div>
|
|
</div>
|
|
<div class="inline field">
|
|
<label></label>
|
|
<button class="ui green button">{{.locale.Tr "sign_in"}}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|