2023-05-16 00:46:51 +02:00
|
|
|
{{if or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn)}}
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
{{end}}
|
|
|
|
<h4 class="ui top attached header center">
|
|
|
|
{{if .LinkAccountMode}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "auth.oauth_signin_title"}}
|
2023-05-16 00:46:51 +02:00
|
|
|
{{else}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "auth.login_userpass"}}
|
2023-05-16 00:46:51 +02:00
|
|
|
{{end}}
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2024-03-06 15:20:26 +01:00
|
|
|
<form class="ui form tw-max-w-2xl tw-m-auto" action="{{.SignInLink}}" method="post">
|
2023-05-16 00:46:51 +02:00
|
|
|
{{.CsrfTokenHtml}}
|
2024-03-06 15:20:26 +01:00
|
|
|
<div class="required field {{if and (.Err_UserName) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn))}}error{{end}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="user_name">{{ctx.Locale.Tr "home.uname_holder"}}</label>
|
2024-02-21 15:14:37 +01:00
|
|
|
<input id="user_name" type="text" name="user_name" value="{{.user_name}}" autofocus required>
|
2023-05-16 00:46:51 +02:00
|
|
|
</div>
|
|
|
|
{{if or (not .DisablePassword) .LinkAccountMode}}
|
2024-03-06 15:20:26 +01:00
|
|
|
<div class="required field {{if and (.Err_Password) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn))}}error{{end}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="password">{{ctx.Locale.Tr "password"}}</label>
|
2024-02-21 15:14:37 +01:00
|
|
|
<input id="password" name="password" type="password" value="{{.password}}" autocomplete="current-password" required>
|
2023-05-16 00:46:51 +02:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{if not .LinkAccountMode}}
|
|
|
|
<div class="inline field">
|
|
|
|
<div class="ui checkbox">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label>{{ctx.Locale.Tr "auth.remember_me"}}</label>
|
2023-05-16 00:46:51 +02:00
|
|
|
<input name="remember" type="checkbox">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{template "user/auth/captcha" .}}
|
|
|
|
|
2024-03-06 15:20:26 +01:00
|
|
|
<div class="field">
|
2023-09-19 00:05:31 +02:00
|
|
|
<button class="ui primary button">
|
2018-10-28 23:46:16 +01:00
|
|
|
{{if .LinkAccountMode}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "auth.oauth_signin_submit"}}
|
2018-10-28 23:46:16 +01:00
|
|
|
{{else}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "sign_in"}}
|
2017-03-17 15:16:08 +01:00
|
|
|
{{end}}
|
2023-05-16 00:46:51 +02:00
|
|
|
</button>
|
2023-09-25 10:56:50 +02:00
|
|
|
<a href="{{AppSubUrl}}/user/forgot_password">{{ctx.Locale.Tr "auth.forgot_password"}}</a>
|
2023-05-16 00:46:51 +02:00
|
|
|
</div>
|
2017-02-22 08:14:37 +01:00
|
|
|
|
2023-05-16 00:46:51 +02:00
|
|
|
{{if .ShowRegistrationButton}}
|
2024-03-06 15:20:26 +01:00
|
|
|
<div class="field">
|
2024-02-22 19:05:47 +01:00
|
|
|
<a href="{{AppSubUrl}}/user/sign_up">{{ctx.Locale.Tr "auth.sign_up_now"}}</a>
|
2023-05-16 00:46:51 +02:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-02-22 08:14:37 +01:00
|
|
|
|
2024-04-09 22:05:24 +02:00
|
|
|
{{if or .OAuth2Providers .EnableOpenIDSignIn}}
|
|
|
|
{{template "user/auth/oauth_container" .}}
|
|
|
|
{{end}}
|
2023-05-16 00:46:51 +02:00
|
|
|
</form>
|
|
|
|
</div>
|