2015-09-17 18:57:24 +00:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 04:00:14 +00:00
|
|
|
<div class="page-content user reset password">
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
2018-03-23 14:10:42 +00:00
|
|
|
<form class="ui form ignore-dirty" action="{{.Link}}" method="post">
|
2015-12-07 22:30:52 +00:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<input name="code" type="hidden" value="{{.Code}}">
|
|
|
|
<h2 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "auth.reset_password"}}
|
|
|
|
</h2>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "base/alert" .}}
|
2019-04-18 07:23:59 +00:00
|
|
|
{{if .user_email }}
|
|
|
|
<div class="inline field">
|
|
|
|
<label for="user_name">{{.i18n.Tr "email"}}</label>
|
|
|
|
<input id="user_name" type="text" value="{{ .user_email }}" disabled>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{if .IsResetForm}}
|
|
|
|
<div class="required inline field {{if .Err_Password}}error{{end}}">
|
2020-01-19 20:17:12 +00:00
|
|
|
<label for="password">{{.i18n.Tr "settings.new_password"}}</label>
|
2020-10-09 07:32:30 +00:00
|
|
|
<input id="password" name="password" type="password" value="{{.password}}" autocomplete="new-password" autofocus required>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2019-04-18 07:23:59 +00:00
|
|
|
{{if not .user_signed_in}}
|
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
|
|
|
<div class="ui checkbox">
|
|
|
|
<label>{{.i18n.Tr "auth.remember_me"}}</label>
|
|
|
|
<input name="remember" type="checkbox">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-01-19 20:17:12 +00:00
|
|
|
{{if .has_two_factor}}
|
|
|
|
<h4 class="ui dividing header">
|
|
|
|
{{.i18n.Tr "twofa"}}
|
|
|
|
</h4>
|
|
|
|
<div class="ui warning visible message">{{.i18n.Tr "settings.twofa_is_enrolled" | Str2html }}</div>
|
|
|
|
{{if .scratch_code}}
|
|
|
|
<div class="required inline field {{if .Err_Token}}error{{end}}">
|
|
|
|
<label for="token">{{.i18n.Tr "auth.scratch_code"}}</label>
|
|
|
|
<input id="token" name="token" type="text" autocomplete="off" autofocus required>
|
|
|
|
</div>
|
|
|
|
<input type="hidden" name="scratch_code" value="true">
|
|
|
|
{{else}}
|
|
|
|
<div class="required inline field {{if .Err_Passcode}}error{{end}}">
|
|
|
|
<label for="passcode">{{.i18n.Tr "passcode"}}</label>
|
|
|
|
<input id="passcode" name="passcode" type="number" autocomplete="off" autofocus required>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
|
|
|
<button class="ui blue button">{{.i18n.Tr "auth.reset_password_helper"}}</button>
|
2020-01-19 20:17:12 +00:00
|
|
|
{{if and .has_two_factor (not .scratch_code)}}
|
|
|
|
<a href="{{.Link}}?code={{.Code}}&scratch_code=true">{{.i18n.Tr "auth.use_scratch_code" | Str2html}}</a>
|
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<p class="center">{{.i18n.Tr "auth.invalid_code"}}</p>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-04-05 16:32:34 +00:00
|
|
|
</div>
|
2015-09-17 18:57:24 +00:00
|
|
|
{{template "base/footer" .}}
|