Files

71 lines
2.8 KiB
Handlebars
Raw Permalink Normal View History

2024-07-05 19:10:09 +02:00
<div class="ui container fluid{{if .LinkAccountMode}} icon{{end}}">
2020-11-14 02:46:40 +00:00
<h4 class="ui top attached header center">
{{if .LinkAccountMode}}
{{ctx.Locale.Tr "auth.oauth_signup_title"}}
2020-11-14 02:46:40 +00:00
{{else}}
{{ctx.Locale.Tr "sign_up"}}
2020-11-14 02:46:40 +00:00
{{end}}
</h4>
<div class="ui attached segment">
{{if .IsFirstTimeRegistration}}
<p>{{ctx.Locale.Tr "auth.sign_up_tip"}}</p>
{{end}}
2024-07-05 19:10:09 +02:00
<form class="ui form" action="{{.SignUpLink}}" method="post">
2020-11-14 02:46:40 +00:00
{{if or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeRegister)}}
{{template "base/alert" .}}
{{end}}
{{if .DisableRegistration}}
<p>{{ctx.Locale.Tr "auth.disable_register_prompt"}}</p>
2020-11-14 02:46:40 +00:00
{{else}}
<div class="required field {{if and (.Err_UserName) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeRegister))}}error{{end}}">
<label for="user_name">{{ctx.Locale.Tr "username"}}</label>
2024-02-21 22:14:37 +08:00
<input id="user_name" type="text" name="user_name" value="{{.user_name}}" autofocus required>
2020-11-14 02:46:40 +00:00
</div>
<div class="required field {{if .Err_Email}}error{{end}}">
<label for="email">{{ctx.Locale.Tr "email"}}</label>
2024-02-21 22:14:37 +08:00
<input id="email" name="email" type="email" value="{{.email}}" required>
2020-11-14 02:46:40 +00:00
</div>
2017-02-22 08:14:37 +01:00
2020-11-14 02:46:40 +00:00
{{if not .DisablePassword}}
<div class="required field {{if and (.Err_Password) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeRegister))}}error{{end}}">
<label for="password">{{ctx.Locale.Tr "password"}}</label>
2024-02-21 22:14:37 +08:00
<input id="password" name="password" type="password" value="{{.password}}" autocomplete="new-password" required>
2020-11-14 02:46:40 +00:00
</div>
<div class="required field {{if and (.Err_Password) (or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeRegister))}}error{{end}}">
<label for="retype">{{ctx.Locale.Tr "re_type"}}</label>
2024-02-21 22:14:37 +08:00
<input id="retype" name="retype" type="password" value="{{.retype}}" autocomplete="new-password" required>
2020-11-14 02:46:40 +00:00
</div>
{{end}}
{{template "user/auth/captcha" .}}
2017-02-22 08:14:37 +01:00
2020-11-14 02:46:40 +00:00
<div class="inline field">
2024-07-05 19:10:09 +02:00
<button class="ui primary button tw-w-full">
2020-11-14 02:46:40 +00:00
{{if .LinkAccountMode}}
{{ctx.Locale.Tr "auth.oauth_signup_submit"}}
2020-11-14 02:46:40 +00:00
{{else}}
{{ctx.Locale.Tr "auth.create_new_account"}}
2017-02-22 08:14:37 +01:00
{{end}}
2020-11-14 02:46:40 +00:00
</button>
</div>
{{end}}
{{$showExternalAuthMethods := or .OAuth2Providers .EnableOpenIDSignIn .EnableSSPI}}
{{if $showExternalAuthMethods}}
<div class="divider divider-text">{{ctx.Locale.Tr "sign_in_or"}}</div>
{{template "user/auth/external_auth_methods" .}}
{{end}}
2020-11-14 02:46:40 +00:00
</form>
2017-02-22 08:14:37 +01:00
</div>
</div>
2024-07-05 19:10:09 +02:00
<div class="ui container fluid">
2025-01-19 12:37:22 +00:00
{{if not .LinkAccountMode}}
2024-07-05 19:10:09 +02:00
<div class="ui attached segment header top tw-flex tw-flex-col tw-items-center">
<div class="field">
<span>{{ctx.Locale.Tr "auth.already_have_account"}}</span>
<a href="{{AppSubUrl}}/user/login">{{ctx.Locale.Tr "auth.sign_in_now"}}</a>
</div>
</div>
2025-01-19 12:37:22 +00:00
{{end}}
2024-07-05 19:10:09 +02:00
</div>