2023-05-15 22:46:51 +00:00
|
|
|
{{if or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn)}}
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
{{end}}
|
|
|
|
<h4 class="ui top attached header center">
|
|
|
|
{{if .LinkAccountMode}}
|
|
|
|
{{.locale.Tr "auth.oauth_signin_title"}}
|
|
|
|
{{else}}
|
|
|
|
{{.locale.Tr "auth.login_userpass"}}
|
|
|
|
{{end}}
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<form class="ui form" action="{{.SignInLink}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="required inline field {{if and (.Err_UserName) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn))}}error{{end}}">
|
|
|
|
<label for="user_name">{{.locale.Tr "home.uname_holder"}}</label>
|
|
|
|
<input id="user_name" type="text" name="user_name" value="{{.user_name}}" autofocus required>
|
|
|
|
</div>
|
|
|
|
{{if or (not .DisablePassword) .LinkAccountMode}}
|
|
|
|
<div class="required inline field {{if and (.Err_Password) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn))}}error{{end}}">
|
|
|
|
<label for="password">{{.locale.Tr "password"}}</label>
|
|
|
|
<input id="password" name="password" type="password" value="{{.password}}" autocomplete="current-password" required>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{if not .LinkAccountMode}}
|
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
|
|
|
<div class="ui checkbox">
|
|
|
|
<label>{{.locale.Tr "auth.remember_me"}}</label>
|
|
|
|
<input name="remember" type="checkbox">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{template "user/auth/captcha" .}}
|
|
|
|
|
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
|
|
|
<button class="ui green button">
|
2018-10-28 22:46:16 +00:00
|
|
|
{{if .LinkAccountMode}}
|
2023-05-15 22:46:51 +00:00
|
|
|
{{.locale.Tr "auth.oauth_signin_submit"}}
|
2018-10-28 22:46:16 +00:00
|
|
|
{{else}}
|
2023-05-15 22:46:51 +00:00
|
|
|
{{.locale.Tr "sign_in"}}
|
2017-03-17 14:16:08 +00:00
|
|
|
{{end}}
|
2023-05-15 22:46:51 +00:00
|
|
|
</button>
|
|
|
|
<a href="{{AppSubUrl}}/user/forgot_password">{{.locale.Tr "auth.forgot_password"}}</a>
|
|
|
|
</div>
|
2017-02-22 07:14:37 +00:00
|
|
|
|
2023-05-15 22:46:51 +00:00
|
|
|
{{if .ShowRegistrationButton}}
|
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
|
|
|
<a href="{{AppSubUrl}}/user/sign_up">{{.locale.Tr "auth.sign_up_now" | Str2html}}</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-02-22 07:14:37 +00:00
|
|
|
|
2023-05-15 22:46:51 +00:00
|
|
|
{{if and .OrderedOAuth2Names .OAuth2Providers}}
|
2023-05-18 11:50:11 +00:00
|
|
|
<div id="oauth2-login-navigator">
|
2023-06-09 10:59:18 +00:00
|
|
|
<div class="gt-df gt-fc gt-jc">
|
|
|
|
<div class="ui horizontal divider">
|
|
|
|
{{.locale.Tr "sign_in_or"}}
|
|
|
|
</div>
|
|
|
|
<div id="oauth2-login-navigator-inner" class="gt-df gt-fc gt-fw gt-ac gt-gap-3">
|
2023-05-18 11:50:11 +00:00
|
|
|
{{range $key := .OrderedOAuth2Names}}
|
|
|
|
{{$provider := index $.OAuth2Providers $key}}
|
2023-06-09 10:59:18 +00:00
|
|
|
<a class="{{$provider.Name}} ui button gt-df gt-ac gt-jc gt-py-3 oauth-login-link" href="{{AppSubUrl}}/user/oauth2/{{$key}}">
|
|
|
|
<img class="gt-mr-3" width="20" height="20" src="{{$provider.IconURL}}" alt="{{$provider.DisplayName}}">
|
|
|
|
{{$.locale.Tr "sign_in_with_provider" $provider.DisplayName}}
|
2023-05-18 11:50:11 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2017-03-17 14:16:08 +00:00
|
|
|
</div>
|
2017-02-22 07:14:37 +00:00
|
|
|
</div>
|
2023-05-15 22:46:51 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</form>
|
|
|
|
</div>
|