summaryrefslogtreecommitdiffstats
path: root/templates/user/auth/signin_inner.tmpl
blob: 9872096fbc6affeb0cc426c1939c7fd2aa474bfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{{if or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn)}}
{{template "base/alert" .}}
{{end}}
<h4 class="ui top attached header center">
	{{if .LinkAccountMode}}
		{{ctx.Locale.Tr "auth.oauth_signin_title"}}
	{{else}}
		{{ctx.Locale.Tr "auth.login_userpass"}}
	{{end}}
</h4>
<div class="ui attached segment">
	<form class="ui form tw-max-w-2xl tw-m-auto" action="{{.SignInLink}}" method="post">
	{{.CsrfTokenHtml}}
	<div class="required field {{if and (.Err_UserName) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn))}}error{{end}}">
		<label for="user_name">{{ctx.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 field {{if and (.Err_Password) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn))}}error{{end}}">
		<label for="password">{{ctx.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">
		<div class="ui checkbox">
			<label>{{ctx.Locale.Tr "auth.remember_me"}}</label>
			<input name="remember" type="checkbox">
		</div>
	</div>
	{{end}}

	{{template "user/auth/captcha" .}}

	<div class="field">
		<button class="ui primary button">
			{{if .LinkAccountMode}}
				{{ctx.Locale.Tr "auth.oauth_signin_submit"}}
			{{else}}
				{{ctx.Locale.Tr "sign_in"}}
			{{end}}
		</button>
		<a href="{{AppSubUrl}}/user/forgot_password">{{ctx.Locale.Tr "auth.forgot_password"}}</a>
	</div>

	{{if .ShowRegistrationButton}}
		<div class="field">
			<a href="{{AppSubUrl}}/user/sign_up">{{ctx.Locale.Tr "auth.sign_up_now"}}</a>
		</div>
	{{end}}

	{{if .OAuth2Providers}}
	<div class="divider divider-text">
		{{ctx.Locale.Tr "sign_in_or"}}
	</div>
	<div id="oauth2-login-navigator" class="tw-py-1">
		<div class="tw-flex tw-flex-col tw-justify-center">
			<div id="oauth2-login-navigator-inner" class="tw-flex tw-flex-col tw-flex-wrap tw-items-center tw-gap-2">
				{{range $provider := .OAuth2Providers}}
					<a class="{{$provider.Name}} ui button tw-flex tw-items-center tw-justify-center tw-py-2 tw-w-full oauth-login-link" href="{{AppSubUrl}}/user/oauth2/{{$provider.DisplayName}}">
						{{$provider.IconHTML 28}}
						{{ctx.Locale.Tr "sign_in_with_provider" $provider.DisplayName}}
					</a>
				{{end}}
			</div>
		</div>
	</div>
	{{end}}
	</form>
</div>