Lines 214-220
Link Here
|
214 |
|
214 |
|
215 |
<form method="post" action="/cgi-bin/koha/opac-memberentry.pl" id="memberentry-form" autocomplete="off"> |
215 |
<form method="post" action="/cgi-bin/koha/opac-memberentry.pl" id="memberentry-form" autocomplete="off"> |
216 |
|
216 |
|
217 |
[% FOREACH field = ['streetnumber' 'streettype' 'cardnumber' 'branchcode' 'categorycode' 'title' 'surname' 'firstname' 'middle_name' 'dateofbirth' 'initials' 'pronouns' 'othernames' 'address' 'address2' 'city' 'state' 'zipcode' 'country' 'phone' 'phonepro' 'mobile' 'email' 'emailpro' 'fax' 'B_streettype' 'B_streetnumber' 'B_address' 'B_address2' 'B_city' 'B_state' 'B_zipcode' 'B_country' 'B_phone' 'B_email' 'contactnote' 'altcontactsurname' 'altcontactfirstname' 'altcontactaddress1' 'altcontactaddress2' 'altcontactaddress3' 'altcontactstate' 'altcontactzipcode' 'altcontactcountry' 'altcontactphone' 'password' ] %] |
217 |
[% FOREACH field = ['streetnumber' 'streettype' 'cardnumber' 'branchcode' 'categorycode' 'title' 'surname' 'firstname' 'middle_name' 'dateofbirth' 'initials' 'pronouns' 'othernames' 'address' 'address2' 'city' 'state' 'zipcode' 'country' 'phone' 'phonepro' 'mobile' 'email' 'emailpro' 'fax' 'B_streettype' 'B_streetnumber' 'B_address' 'B_address2' 'B_city' 'B_state' 'B_zipcode' 'B_country' 'B_phone' 'B_email' 'contactnote' 'altcontactsurname' 'altcontactfirstname' 'altcontactaddress1' 'altcontactaddress2' 'altcontactaddress3' 'altcontactstate' 'altcontactzipcode' 'altcontactcountry' 'altcontactphone' 'password' 'smsalertnumber' ] %] |
218 |
[% IF mandatory.defined( field ) %] |
218 |
[% IF mandatory.defined( field ) %] |
219 |
[% SET required.$field = 'required' %] |
219 |
[% SET required.$field = 'required' %] |
220 |
[% END %] |
220 |
[% END %] |
Lines 902-908
Link Here
|
902 |
</div> <!-- /.col --> |
902 |
</div> <!-- /.col --> |
903 |
</div> <!-- /.row --> |
903 |
</div> <!-- /.row --> |
904 |
[% END %] |
904 |
[% END %] |
|
|
905 |
[% IF ( Koha.Preference('SMSSendDriver') ) && !hidden.defined('smsalertnumber') && action != 'edit' %] |
906 |
<div class="row"> |
907 |
<div class="col"> |
908 |
<fieldset class="rows" id="memberentry_sms"> |
909 |
<legend id="sms_legend">SMS number</legend> |
910 |
<ol> |
911 |
[% UNLESS hidden.defined('smsalertnumber') %] |
912 |
<li> |
913 |
<label for="borrower_smsalertnumber" class="[% required.smsalertnumber | html %]">SMS number:</label> |
905 |
|
914 |
|
|
|
915 |
<input type="text" id="borrower_smsalertnumber" name="borrower_smsalertnumber" value="[% borrower.smsalertnumber | html %]" class="[% required.smsalertnumber | html %]" /> |
916 |
<div class="required_label [% required.smsalertnumber | html %]">Required</div> |
917 |
<span class="hint smsalertnumber_help">Please enter numbers only. Prefix the number with + or 00 if including the country code.</span> |
918 |
</li> |
919 |
[% END %] |
920 |
</ol> |
921 |
</fieldset> |
922 |
</div> |
923 |
</div> |
924 |
[% END %] |
906 |
[% UNLESS action == 'edit' || hidden.defined('password') %] |
925 |
[% UNLESS action == 'edit' || hidden.defined('password') %] |
907 |
<div class="row"> |
926 |
<div class="row"> |
908 |
<div class="col"> |
927 |
<div class="col"> |
909 |
- |
|
|