@@ -, +, @@ --- .../bootstrap/en/modules/opac-memberentry.tt | 56 +++++++++++--------- opac/opac-memberentry.pl | 1 - 2 files changed, 32 insertions(+), 25 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt @@ -754,31 +754,39 @@ [% UNLESS action == 'edit' %]
- Contact information - [% UNLESS hidden.defined('password') %] -
Your password must be at least [% minpassw %] characters long. - [% IF mandatory.defined('password') %] -
You must enter a password!
-
    -
  1. - -
  2. -
  3. - -
  4. -
- [% ELSE %] -
If you do not enter a password a system generated password will be created -
    -
  1. - -
  2. -
  3. - -
  4. -
+ Password + [% UNLESS hidden.defined('password') %] +
+ [% IF Koha.Preference('minPasswordLength') %] +

Your password must be at least [% Koha.Preference('minPasswordLength') %] characters long.

+ [% END %] + [% UNLESS mandatory.defined('password') %] + If you do not enter a password a system generated password will be created + [% END %] +
+ + [% IF mandatory.defined('password') %] +
    +
  1. + + Required +
  2. +
  3. + + Required +
  4. +
+ [% ELSE %] +
    +
  1. + +
  2. +
  3. + +
  4. +
+ [% END %] [% END %] - [% END %]
--- a/opac/opac-memberentry.pl +++ a/opac/opac-memberentry.pl @@ -66,7 +66,6 @@ $template->param( action => $action, hidden => $hidden, mandatory => $mandatory, - minpassw => C4::Context->preference('minPasswordLength'), member_titles => GetTitles() || undef, branches => GetBranchesLoop(), OPACPatronDetails => C4::Context->preference('OPACPatronDetails'), --