[%# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
#%]
[% title = "Change Password" %]
[% PROCESS global/header.html.tmpl %]
[% password_complexity = Param('password_complexity') %]
To change your password, enter a new password twice:
- Password must be at least [% constants.USER_PASSWORD_MIN_LENGTH FILTER none %] characters long.
[% IF password_complexity == "mixed_letters" %]
- Password must contain at least one UPPER and one lowercase letter.
[% ELSIF password_complexity == "letters_numbers" %]
- Password must contain at least one UPPER and one lower case letter and a number.
[% ELSIF password_complexity == "letters_numbers_specialchars" %]
- Password must contain at least one letter, a number and a special character.
[% END %]
[% PROCESS global/footer.html.tmpl %]