${_('Change Your Account Password')}

%if c.can_change_password: ${h.form(url('my_account_password'), method='post')}
${h.password('current_password',class_='form-control')}
${h.password('new_password',class_='form-control')}
${h.password('new_password_confirmation',class_='form-control')}
${h.submit('save',_('Save'),class_="btn btn-default")} ${h.reset('reset',_('Reset'),class_="btn btn-default")}
${h.end_form()} %else: ${_('This account is managed with %s and the password cannot be changed here') % c.user.extern_type} %endif