aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/default/auth/change_password.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/web/default/auth/change_password.html')
-rw-r--r--templates/web/default/auth/change_password.html39
1 files changed, 0 insertions, 39 deletions
diff --git a/templates/web/default/auth/change_password.html b/templates/web/default/auth/change_password.html
deleted file mode 100644
index c10560c3e..000000000
--- a/templates/web/default/auth/change_password.html
+++ /dev/null
@@ -1,39 +0,0 @@
-[% INCLUDE 'header.html', title = loc('Change Password') %]
-
-<h1>[% loc('Change Password') %]</h1>
-
-[% IF password_changed %]
- <p id="fixed">[% loc('Your password has been changed') %]</p>
-[% END %]
-
-
-<form action="[% c.uri_for('change_password') %]" method="post" name="change_password" class="fieldset">
-
- [% IF password_error;
-
- errors = {
- missing => loc('Please enter a password'),
- mismatch => loc('The passwords do not match'),
- other => loc('Please check the passwords and try again'),
- };
-
- loc_password_error = errors.$password_error || errors.other; %]
- <div class="form-error">[% loc_password_error %]</div>
- [% END %]
-
- <div class="form-field">
- <label for="new_password">[% loc('Password:') %]</label>
- <input type="password" name="new_password" value="[% new_password | html %]">
- </div>
- <div class="form-field">
- <label for="confirm">[% loc('Again:') %]</label>
- <input type="password" name="confirm" value="[% confirm | html %]">
- </div>
- <div class="checkbox">
- <input type="submit" value="[% loc('Change Password') %]">
- </div>
-
-</form>
-
-
-[% INCLUDE 'footer.html' %]