2015-09-18 00:27:24 +05:30
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="user reset password">
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
2018-03-23 19:40:42 +05:30
|
|
|
<form class="ui form ignore-dirty" action="{{.Link}}" method="post">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{.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" .}}
|
|
|
|
{{if .IsResetForm}}
|
|
|
|
<div class="required inline field {{if .Err_Password}}error{{end}}">
|
|
|
|
<label for="password">{{.i18n.Tr "password"}}</label>
|
2016-11-30 03:19:06 +05:30
|
|
|
<input id="password" name="password" type="password" value="{{.password}}" autocomplete="off" autofocus required>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
|
|
|
<button class="ui blue button">{{.i18n.Tr "auth.reset_password_helper"}}</button>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<p class="center">{{.i18n.Tr "auth.invalid_code"}}</p>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-04-05 22:02:34 +05:30
|
|
|
</div>
|
2015-09-18 00:27:24 +05:30
|
|
|
{{template "base/footer" .}}
|