2015-09-10 17:40:34 +02:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="user settings password">
|
2017-03-15 23:39:38 +01:00
|
|
|
{{template "user/settings/navbar" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="ui container">
|
2017-03-15 23:39:38 +01:00
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "settings.change_password"}}
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{if or (.SignedUser.IsLocal) (.SignedUser.IsOAuth2)}}
|
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
{{if .SignedUser.IsPasswordSet}}
|
|
|
|
<div class="required field {{if .Err_OldPassword}}error{{end}}">
|
|
|
|
<label for="old_password">{{.i18n.Tr "settings.old_password"}}</label>
|
|
|
|
<input id="old_password" name="old_password" type="password" autocomplete="off" autofocus required>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<div class="required field {{if .Err_Password}}error{{end}}">
|
|
|
|
<label for="password">{{.i18n.Tr "settings.new_password"}}</label>
|
|
|
|
<input id="password" name="password" type="password" autocomplete="off" required>
|
|
|
|
</div>
|
|
|
|
<div class="required field {{if .Err_Password}}error{{end}}">
|
|
|
|
<label for="retype">{{.i18n.Tr "settings.retype_new_password"}}</label>
|
|
|
|
<input id="retype" name="retype" type="password" autocomplete="off" required>
|
|
|
|
</div>
|
2015-09-10 17:40:34 +02:00
|
|
|
|
2017-03-15 23:39:38 +01:00
|
|
|
<div class="field">
|
|
|
|
<button class="ui green button">{{$.i18n.Tr "settings.change_password"}}</button>
|
|
|
|
<a href="{{AppSubUrl}}/user/forgot_password?email={{.Email}}">{{.i18n.Tr "auth.forgot_password"}}</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2017-03-15 23:39:38 +01:00
|
|
|
</form>
|
|
|
|
{{else}}
|
|
|
|
<div class="ui info message">
|
|
|
|
<p class="text left">{{$.i18n.Tr "settings.password_change_disabled"}}</p>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2017-03-15 23:39:38 +01:00
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-07-26 06:24:27 +02:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|