summaryrefslogtreecommitdiffstats
path: root/templates/user/auth/change_passwd_inner.tmpl
blob: 601f0365f3555e5a0be7c1117aaf1b9ab4daf85a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
		{{if or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn)}}
		{{template "base/alert" .}}
		{{end}}
		<h4 class="ui top attached header center">
			{{ctx.Locale.Tr "settings.update_password"}}
		</h4>
		<div class="ui attached segment">
			<form class="ui form tw-max-w-2xl tw-m-auto" action="{{.ChangePasscodeLink}}" method="post">
			{{.CsrfTokenHtml}}
			<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="new-password" required>
			</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>
				<input id="retype" name="retype" type="password" autocomplete="new-password" required>
			</div>
			<div class="inline field">
				<button class="ui primary button">{{ctx.Locale.Tr "settings.update_password"}}</button>
			</div>
			</form>
		</div>