Hiding minimum password hint if there is no minimum password length set.
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / memberentrygen.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Patrons &rsaquo; 
3 <!-- TMPL_IF NAME="opadd" -->   Add<!-- TMPL_ELSE --> Modify<!--/TMPL_IF--> <!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF --><!--TMPL_UNLESS Name="opadd"--> <!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR name="firstname" --><!--/TMPL_UNLESS--></title>
4 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
5 <script type="text/javascript" src="<!-- TMPL_VAR NAME='themelang' -->/js/members.js"></script>
6 <!-- TMPL_INCLUDE NAME="calendar.inc" -->
7 <script type="text/JavaScript" language="JavaScript">
8 //<![CDATA[
9     $(document).ready(function() {
10                 $("fieldset.rows input").keydown(function(e){ return checkEnter(e); });
11         $("#guarantordelete").click(function() {
12             $("#contact-details").hide().find('a').remove();
13             $("#guarantorid, #contactname, #contactfirstname").each(function () { this.value = "" });
14             $("#contactname, #contactfirstname")
15                 .each(function () { this.type = 'text' })
16                 .parent().find('span').remove();
17             $("#guarantorsearch").val("Set to Patron");
18         });
19         $("#select_city").change(function(){
20             var myRegEx=new RegExp(/(.*)\|(.*)/);
21             document.form.select_city.value.match(myRegEx);
22             document.form.zipcode.value=RegExp.$1;
23             document.form.city.value=RegExp.$2;
24         });
25     });
26
27     function clear_entry(node) {
28         var original = node.parentNode.parentNode;
29         $("input", original).attr('value', '');
30         $("select", original).attr('value', '');
31     }
32
33     function clone_entry(node) {
34         var original = node.parentNode.parentNode;
35         var clone = original.cloneNode(true);
36         var newId = 50 + parseInt(Math.random() * 100000);
37         $("input", clone).attr('id', function() {
38             return this.id.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
39         });
40         $("input", clone).attr('name', function() {
41             return this.name.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
42         });
43         $("select", clone).attr('id', function() {
44             return this.id.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
45         });
46         $("select", clone).attr('name', function() {
47             return this.name.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
48         });
49         original.parentNode.insertBefore(clone, original.nextSibling);
50     }
51
52 //]]>
53 </script>
54 </head>
55 <body>
56 <!-- TMPL_INCLUDE NAME="header.inc" -->
57 <!-- TMPL_INCLUDE NAME="patron-search.inc" -->
58
59 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; 
60 <!-- TMPL_IF NAME="opadd" -->
61                 Add<!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF -->
62 <!-- TMPL_VAR NAME="surname" --> <!-- TMPL_VAR name="firstname" -->
63 <!-- TMPL_ELSE --> 
64 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->"><!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR NAME="surname" --></a> &rsaquo; <strong>Modify<!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF -->
65 </strong><!-- /TMPL_IF --></div>
66
67 <!-- TMPL_IF NAME="opadd" --><div id="doc" class="yui-t7"><!-- TMPL_ELSE --><div id="doc3" class="yui-t2"><!-- /TMPL_IF -->
68    
69    <div id="bd">
70         <div id="yui-main">
71         <div class="yui-b">
72
73
74         <!-- TMPL_IF NAME="opadd" -->
75         <h1>
76                 Add<!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF --> <!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR NAME="surname" --> 
77         </h1>
78         <!-- TMPL_ELSE -->
79         <h1>
80                 Modify<!--TMPL_IF Name="categoryname"--> <!--TMPL_VAR Name="categoryname"--> patron<!-- TMPL_ELSE --><!--TMPL_IF Name="I"--> Organization patron<!--/TMPL_IF --><!--TMPL_IF Name="A"--> Adult patron<!--/TMPL_IF --><!--TMPL_IF Name="C"--> Child patron<!--/TMPL_IF --><!--TMPL_IF Name="P"--> Professional patron<!--/TMPL_IF --><!--TMPL_IF Name="S"--> Staff patron<!--/TMPL_IF --><!--/TMPL_IF -->
81 <!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR NAME="surname" --> 
82         </h1>
83         <!-- /TMPL_IF -->
84   
85         <!-- TMPL_IF NAME="check_member" -->
86                 <p>
87                 <form name="form_double" action="/cgi-bin/koha/members/memberentry.pl" method="post">
88                         <div class="dialog alert">
89                                 <h3>Duplicate suspected</h3>
90                                 <a href="javascript:Dopop('borrowers_details.pl?borrowernumber=<!--TMPL_VAR NAME="check_member"-->');" >Detail</a>
91                                 Duplicate ?
92                                 <a href="/cgi-bin/koha/members/memberentry.pl?borrowernumber=<!--TMPL_VAR NAME="check_member"-->&amp;category_type=<!--TMPL_VAR NAME="check_categorytype"-->">Yes</a> 
93                                 &nbsp;&nbsp;&nbsp; No, it is not
94                                 <!-- TMPL_IF NAME="checked"-->
95                                         <input type="checkbox" checked="checked" name="answernodouble" >
96                                 <!-- TMPL_ELSE -->
97                                         <input type="checkbox" name="answernodouble" />
98                                 <!-- /TMPL_IF -->
99                         </div>
100                 </form>
101                 </p>
102         <!--/TMPL_IF-->
103                 
104         <!-- TMPL_IF Name="debug" -->
105                 <div id="debug">
106                                 <div>Debug is on (level <!-- TMPL_VAR NAME="debug" -->)</div>
107                 </div>
108         <!-- /TMPL_IF -->
109         <!-- TMPL_IF Name="nok" -->
110                 <div class="dialog alert">
111                         <p>The following fields are wrong. Please fix them.</p>
112                         <ul>
113                         <!-- TMPL_IF NAME="ERROR_login_exist" -->
114                                 <li id="ERROR_login_exist">Login/password already exists.</li>
115                         <!-- /TMPL_IF -->
116                         <!-- TMPL_IF NAME="ERROR_cardnumber" -->
117                                 <li id="ERROR_cardnumber">Cardnumber already in use.</li>
118                         <!-- /TMPL_IF -->
119                         <!-- TMPL_IF NAME="ERROR_age_limitations" -->
120                                 <li id="ERROR_age_limitations">Patron's age is incorrect for their category.  
121                                         Ages allowed are <!-- TMPL_VAR NAME="ERROR_age_limitations"-->.</li>
122                         <!-- /TMPL_IF -->
123                         <!-- TMPL_IF NAME="ERROR_branch" -->
124                                 <li id="ERROR_branch">Library is invalid.</li>
125                         <!-- /TMPL_IF -->   
126                         <!-- TMPL_IF NAME="ERROR_dateofbirth" -->
127                                 <li id="ERROR_dateofbirth">Date of birth is invalid.</li>
128                         <!-- /TMPL_IF -->
129                         <!-- TMPL_IF NAME="ERROR_dateenrolled" -->
130                                 <li id="ERROR_dateenrolled">Date of enrollment is invalid.</li>
131                         <!-- /TMPL_IF -->
132                         <!-- TMPL_IF NAME="ERROR_dateexpiry" -->
133                                 <li id="ERROR_dateexpiry">Date of expiration is invalid.</li>
134                         <!-- /TMPL_IF -->
135                         <!-- TMPL_IF NAME="ERROR_short_password" -->
136                                 <li id="ERROR_short_password">Password must be at least <!-- TMPL_VAR NAME="minPasswordLength" --> characters long.</li>
137                         <!-- /TMPL_IF -->
138             <!-- TMPL_IF NAME="ERROR_extended_unique_id_failed" -->
139                 <li id="ERROR_extended_unique_id_failed">The attribute value 
140                     <!-- TMPL_VAR NAME="ERROR_extended_unique_id_failed" --> is already is use by another patron record.</li>
141                         <!-- /TMPL_IF -->
142                         </ul>
143                 </div>
144         <!-- /TMPL_IF -->
145         
146   
147 <form name="form" id="entryform"  action="/cgi-bin/koha/members/memberentry.pl" method="post"> 
148 <!--    field always hidden in different form (1,2,3) -->
149 <input type="hidden" name="BorrowerMandatoryField" value="<!--TMPL_VAR NAME="BorrowerMandatoryField"-->" />
150 <input type="hidden" name="category_type" value="<!-- TMPL_VAR name="category_type" -->" />
151 <input type="hidden" name="updtype" value="<!-- TMPL_VAR NAME="updtype" -->" />
152 <input type="hidden" name="select_roadtype" value="<!-- TMPL_VAR NAME="select_roadtype" -->" />
153 <input type="hidden" name="destination" value="<!-- TMPL_VAR NAME="destination" -->" />
154 <input type="hidden" name="check_member" value="<!-- TMPL_VAR NAME="check_member" -->" />
155 <input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR NAME="borrowernumber" -->" />
156 <input type="hidden" name="nodouble"  value="<!-- TMPL_VAR NAME="nodouble" -->" />
157 <!--TMPL_IF Name="step"--><input type="hidden" name="step"  value="<!-- TMPL_VAR NAME="step" -->" /><!--/TMPL_IF-->
158 <!-- TMPL_IF NAME="opadd" --><input type="hidden" name="op" value="insert" /><!-- TMPL_ELSE --><input type="hidden" name="op" value="save" /><!-- /TMPL_IF -->
159
160 <!--TMPL_IF Name="step_1"-->
161         <fieldset class="rows" id="memberentry_identity">
162                 <legend><!--TMPL_IF Name="I"-->Organization <!--TMPL_ELSE-->Patron <!--/TMPL_IF-->identity</legend>
163                 <ol>
164                 <!-- TMPL_UNLESS name="I" -->
165                 <!-- TMPL_IF NAME="title_cgipopup" -->
166             <li>
167             <!-- TMPL_IF NAME="mandatorytitle" -->
168                 <label for="btitle" class="required">
169             <!-- TMPL_ELSE -->
170                 <label for="btitle">
171             <!-- /TMPL_IF-->
172             Salutation: </label>
173             <!-- TMPL_VAR NAME="borrotitlepopup" -->
174             <!-- TMPL_IF NAME="mandatorytitle" --><span class="required">Required</span><!-- /TMPL_IF -->
175             </li>
176                 <!-- /TMPL_IF -->
177         <!-- /TMPL_UNLESS -->
178                 <li>
179                 <!-- TMPL_IF NAME="mandatorysurname" -->
180                 <label for="surname" class="required">
181                 <!-- TMPL_ELSE -->
182                 <label for="surname">
183                 <!-- /TMPL_IF-->
184                 Surname: </label>
185                 <!-- TMPL_IF NAME="uppercasesurnames" -->
186                 <input style="text-transform:uppercase;" type="text" id="surname" name="surname" size="20"  value="<!-- TMPL_VAR NAME="surname" -->" />
187                 <!-- TMPL_ELSE -->
188                 <input type="text" id="surname" name="surname" size="20"  value="<!-- TMPL_VAR NAME="surname" -->" />
189                 <!-- /TMPL_IF -->
190                 <!-- TMPL_IF NAME="mandatorysurname" --><span class="required">Required</span><!-- /TMPL_IF -->
191                 </li>
192                 <!-- TMPL_UNLESS name="I" -->
193             <li>
194                 <!-- TMPL_IF NAME="mandatoryfirstname" -->
195                 <label for="firstname" class="required">
196                 <!-- TMPL_ELSE -->
197                 <label for="firstname">
198                 <!-- /TMPL_IF-->
199                 First name: </label>
200                 <input type="text" id="firstname" name="firstname" size="20"  value="<!-- TMPL_VAR NAME="firstname" -->" />
201                 <!-- TMPL_IF NAME="mandatoryfirstname" --><span class="required">Required</span><!-- /TMPL_IF -->
202             </li>
203             <li>
204                 <!-- TMPL_IF NAME="mandatorydateofbirth" -->
205                 <label for="dateofbirth" class="required">
206                 <!-- TMPL_ELSE -->
207                 <label for="dateofbirth">
208                 <!-- /TMPL_IF-->
209                 Date of birth: </label>
210                                 
211         <!-- TMPL_IF NAME="metric" -->                  
212                 <input type="text" id="dateofbirth" name="dateofbirth" size="20" onchange="CheckDate(document.form.dateofbirth);" value="<!-- TMPL_VAR NAME="dateofbirth" -->" />
213 <!-- TMPL_ELSE -->
214                 <input type="text" id="dateofbirth" name="dateofbirth" size="20" value="<!-- TMPL_VAR NAME="dateofbirth" -->" />
215 <!-- /TMPL_IF -->
216
217                 <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="dateofbirth_button" alt="Show Calendar" />
218         <script language="JavaScript" type="text/javascript">
219             Calendar.setup(
220             {
221                 inputField : "dateofbirth",
222                 ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
223                 button : "dateofbirth_button"
224             }
225             );
226         </script>
227         <!-- TMPL_IF NAME="mandatorydateofbirth" --><span class="required">Required</span><!-- /TMPL_IF -->
228         <!-- TMPL_IF NAME="ERROR_dateofbirth" --><span class="required">(Error)</span><!-- /TMPL_IF -->
229             </li>
230             <li>
231                 <!-- TMPL_IF NAME="mandatoryinitials" -->
232                     <label for="initials" class="required">
233                 <!-- TMPL_ELSE -->
234                     <label for="initials">
235                 <!-- /TMPL_IF-->
236                 Initials: </label>
237                 <input type="text" id="initials" name="initials" size="20"  value="<!-- TMPL_VAR NAME="initials" -->" />        
238                 <!-- TMPL_IF NAME="mandatoryinitials" --><span class="required">Required</span><!-- /TMPL_IF -->
239             </li>
240         <!-- /TMPL_UNLESS -->
241                 <li>
242                         <!-- TMPL_IF NAME="mandatoryothernames" -->
243                         <label for="othernames" class="required">
244                         <!-- TMPL_ELSE -->
245                         <label for="othernames">
246                         <!-- /TMPL_IF-->
247                         Other name: </label>
248                         <input type="text" id="othernames" name="othernames" size="20"  value="<!-- TMPL_VAR NAME="othernames" -->" />
249 <!-- TMPL_IF NAME="mandatoryothernames" --><span class="required">Required</span><!-- /TMPL_IF -->
250                 <!-- TMPL_IF NAME="I" --><input type="hidden" name="sex" value="N" /><!-- /TMPL_IF -->
251                 </li>
252     <!--TMPL_UNLESS Name="I"-->
253                 <li class="radio">
254                 
255                 <!-- TMPL_IF NAME="female" -->
256                                 <label for="sex-female">Female </label><input type="radio" name="sex" id="sex-female" value="F" checked="checked"  />
257 <!-- TMPL_ELSE -->
258                                 <label for="sex-female">Female </label><input type="radio" name="sex" id="sex-female" value="F" />
259 <!-- /TMPL_IF -->
260                 <!-- TMPL_IF NAME="male" -->
261                 <label for="sex-male">Male </label><input type="radio" name="sex" id="sex-male" value="M" checked="checked" />
262 <!-- TMPL_ELSE -->
263                                 <label for="sex-male">Male </label><input type="radio" name="sex" id="sex-male" value="M" />
264 <!-- /TMPL_IF -->
265 <!-- TMPL_IF NAME="none" -->
266                                 <label for="sex-none">N/A </label><input type="radio" name="sex" id="sex-none" value=""  checked="checked"  />
267 <!-- TMPL_ELSE -->
268                                 <label for="sex-none">N/A </label><input type="radio" name="sex" id="sex-none" value="" />
269 <!-- /TMPL_IF -->
270         </li>
271     <!--/TMPL_UNLESS-->
272                 </ol>
273         </fieldset>
274         
275 <!--TMPL_IF Name="showguarantor"--><input type="hidden" id="guarantorid" name="guarantorid"   value="<!-- TMPL_VAR NAME="guarantorid" -->" />
276     <fieldset class="rows">
277         <legend>Guarantor Information</legend>
278         <ol>
279         <!-- TMPL_IF NAME="guarantorid" -->
280         <li id="contact-details">
281         <!-- TMPL_ELSE -->
282         <li id="contact-details" style="display: none">
283         <!-- /TMPL_IF -->
284             <span class="label">Patron #:</span> <!-- TMPL_IF NAME="guarantorid" --> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="guarantorid" -->" target="blank"><!-- TMPL_VAR NAME="guarantorid" --></a><!-- /TMPL_IF -->
285         </li>
286         <li>
287             <label for="contactname">Surname: </label>
288             <!-- TMPL_IF NAME="guarantorid" -->
289             <span><!-- TMPL_VAR NAME="contactname" --></span>
290             <input name="contactname" id="contactname" type="hidden" size="20" value="<!-- TMPL_VAR NAME="contactname" -->" />
291             <!-- TMPL_ELSE -->
292             <input name="contactname" id="contactname" type="text" size="20" value="<!-- TMPL_VAR NAME="contactname" -->" />
293             <!-- /TMPL_IF -->
294         </li>
295         <li>
296             <label for="contactfirstname">First name: </label>
297             <!-- TMPL_IF NAME="guarantorid" -->
298             <span><!-- TMPL_VAR NAME="contactfirstname" --></span>
299             <input name="contactfirstname" id="contactfirstname" type="hidden" size="20" value="<!-- TMPL_VAR NAME="contactfirstname" -->" />
300             <!-- TMPL_ELSE -->
301             <input name="contactfirstname" id="contactfirstname" type="text" size="20" value="<!-- TMPL_VAR NAME="contactfirstname" -->" />
302             <!-- /TMPL_IF -->
303         </li>
304         <!-- TMPL_IF name="relshiploop" -->
305         <li>
306             <label for="relationship">Relationship: </label>
307             <select name="relationship" id="relationship" >
308                 <!-- TMPL_LOOP name="relshiploop" -->
309                 <!-- TMPL_IF name="selected" -->
310                 <option value="<!-- TMPL_VAR name="relationship" -->" selected="selected" ><!-- TMPL_VAR name="relationship" --></option>
311                 <!-- TMPL_ELSE -->
312                 <option value="<!-- TMPL_VAR name="relationship" -->"><!-- TMPL_VAR name="relationship" --></option>
313                 <!-- /TMPL_IF -->
314                 <!-- /TMPL_LOOP -->
315             </select>
316         </li>
317         <!-- /TMPL_IF -->
318         <li>
319             <span class="label">&nbsp;</span>
320             <!-- TMPL_IF NAME="guarantorid" -->
321             <input id="guarantorsearch" type="button" value="Change" onclick="Dopopguarantor('guarantor_search.pl');" />
322             <!-- TMPL_ELSE -->
323             <input id="guarantorsearch" type="button" value="Set to Patron" onclick="Dopopguarantor('guarantor_search.pl');" />
324             <!-- /TMPL_IF -->
325             <input id="guarantordelete" type="button" value="Delete" />
326         </li>
327         </ol>
328     </fieldset>
329
330 <!--/TMPL_IF-->
331 <fieldset class="rows">
332     <legend>Main address</legend><ol>
333     <li>
334       <!-- TMPL_IF NAME="mandatorystreetnumber" -->
335       <label for="streetnumber" class="required">
336       <!--TMPL_ELSE-->
337       <label for="streetnumber">
338       <!-- /TMPL_IF-->
339       Street number: </label>
340       <input type="text" id="streetnumber" name="streetnumber" size="5" value="<!-- TMPL_VAR NAME="streetnumber" -->" />
341 <!-- TMPL_IF NAME="mandatorystreetnumber" --><span class="required">Required</span><!-- /TMPL_IF -->
342     </li>
343     <!-- TMPL_IF NAME="road_cgipopup" -->
344       <li>
345       <!-- TMPL_IF NAME="mandatorystreettype" -->
346       <label for="streettype" class="required">
347       <!--TMPL_ELSE-->
348       <label for="streettype">
349       <!-- /TMPL_IF-->
350       Street type: </label>
351       <!-- TMPL_VAR NAME="roadpopup" -->
352           <!-- TMPL_IF NAME="mandatorystreettype" --><span class="required">Required</span><!-- /TMPL_IF -->
353       </li>
354     <!--/TMPL_IF--> 
355     <li>
356       <!-- TMPL_IF NAME="mandatoryaddress" -->
357       <label for="address" class="required">
358       <!--TMPL_ELSE-->
359       <label for="address">
360       <!--/TMPL_IF-->
361       Address: </label>
362       <input type="text" id="address" name="address" size="35" value="<!-- TMPL_VAR NAME="address" -->" />
363           <!-- TMPL_IF NAME="mandatoryaddress" --><span class="required">Required</span><!-- /TMPL_IF -->
364     </li>
365     <li>
366       <!-- TMPL_IF NAME="mandatoryaddress2" -->
367       <label for="address2" class="required">
368       <!--TMPL_ELSE-->
369       <label for="address2">
370       <!-- /TMPL_IF-->
371       Address 2: </label>
372       <input type="text" id="address2" name="address2" size="35" value="<!-- TMPL_VAR NAME="address2" -->" />
373           <!-- TMPL_IF NAME="mandatoryaddress2" --><span class="required">Required</span><!-- /TMPL_IF -->
374     </li>  
375     <li>
376       <!-- TMPL_IF NAME="mandatorycity" -->
377         <label for="city" class="required">
378       <!--TMPL_ELSE-->
379         <label for="city">
380       <!-- /TMPL_IF-->
381       City, State: </label>
382         
383         <input type="text" id="city" name="city" size="20" value="<!-- TMPL_VAR NAME="city" -->" />
384         <!-- TMPL_IF NAME="city_cgipopup" -->or <strong>choose</strong> <!-- TMPL_VAR NAME="citypopup" --><!-- /TMPL_IF -->
385           <!-- TMPL_IF NAME="mandatorycity" --><span class="required">Required</span><!-- /TMPL_IF -->
386     </li>
387     <li> 
388       <!-- TMPL_IF NAME="mandatoryzipcode" -->
389         <label for="zipcode" class="required">
390       <!--TMPL_ELSE-->
391         <label for="zipcode">
392       <!-- /TMPL_IF-->
393       Zipcode: </label>
394       <input type="text" name="zipcode" id="zipcode" size="10" value="<!-- TMPL_VAR NAME="zipcode" -->" />
395           <!-- TMPL_IF NAME="mandatoryzipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
396     </li>
397   
398         </ol>
399     </fieldset>
400   <fieldset class="rows" id="memberentry_contact">
401     <legend>Contact</legend><ol>       
402 <!--TMPL_IF Name="C"-->
403       <h2>Patron</h2>
404       <li> 
405         <!-- TMPL_IF NAME="mandatoryB_email" -->
406           <label for="B_email" class="required">
407         <!--TMPL_ELSE-->
408           <label for="B_email">
409         <!-- /TMPL_IF-->
410         Email (home): </label>
411         <input type="text" id="B_email" name="B_email" size="45" value="<!-- TMPL_VAR NAME="B_email" -->" />
412                 <!-- TMPL_IF NAME="mandatoryB_email" --><span class="required">Required</span><!-- /TMPL_IF --> </li>
413 <!--/TMPL_IF-->
414       <li>
415       <!-- TMPL_IF NAME="mandatoryphone" --> 
416       <label for="phone" class="required">
417       <!--TMPL_ELSE-->
418       <label for="phone">
419       <!-- /TMPL_IF-->
420       Phone (home): </label>
421       <input type="text" id="phone" name="phone" value="<!-- TMPL_VAR NAME="phone" -->" />
422           <!-- TMPL_IF NAME="mandatoryphone" --><span class="required">Required</span><!-- /TMPL_IF -->
423     </li>
424     <li>
425       <!-- TMPL_IF NAME="mandatoryphonepro" -->
426       <label for="phonepro" class="required">
427       <!--TMPL_ELSE-->
428       <label for="phonepro">
429       <!-- /TMPL_IF-->
430       Phone (work): </label>
431       <input type="text" id="phonepro" name="phonepro" value="<!-- TMPL_VAR NAME="phonepro" -->" />
432           <!-- TMPL_IF NAME="mandatoryphonepro" --><span class="required">Required</span><!-- /TMPL_IF -->
433     </li>
434     <li>
435       <!-- TMPL_IF NAME="mandatorymobile" -->
436       <label for="mobile" class="required">
437       <!--TMPL_ELSE-->
438       <label for="mobile">
439       <!-- /TMPL_IF-->
440       Phone (cell): </label>
441       <input type="text" id="mobile" name="mobile" value="<!-- TMPL_VAR NAME="mobile" -->" />
442           <!-- TMPL_IF NAME="mandatorymobile" --><span class="required">Required</span><!-- /TMPL_IF -->
443     </li>
444     <li>
445       <!-- TMPL_IF NAME="mandatoryemail" -->
446       <label for="email" class="required">
447       <!--TMPL_ELSE-->
448       <label for="email">
449       <!-- /TMPL_IF-->
450       Email (home): </label>
451       <input type="text" id="email" name="email" size="45" value="<!-- TMPL_VAR NAME="email" -->" />  
452           <!-- TMPL_IF NAME="mandatoryemail" --><span class="required">Required</span><!-- /TMPL_IF -->
453     </li>
454     <li>
455       <!-- TMPL_IF NAME="mandatoryemailpro" --> 
456       <label for="emailpro" class="required">
457       <!--TMPL_ELSE-->
458       <label for="emailpro">
459       <!-- /TMPL_IF-->
460       Email (work): </label>
461       <input type="text" id="emailpro" name="emailpro" size="45" value="<!-- TMPL_VAR NAME="emailpro" -->" />
462           <!-- TMPL_IF NAME="mandatoryemailpro" --><span class="required">Required</span><!-- /TMPL_IF -->
463     </li>
464     <li>
465       <!-- TMPL_IF NAME="mandatoryfax" -->
466       <label for="fax" class="required">
467       <!--TMPL_ELSE-->
468       <label for="fax">
469       <!-- /TMPL_IF-->
470       Fax: </label>
471       <input type="text" id="fax" name="fax" value="<!-- TMPL_VAR NAME="fax" -->" />
472           <!-- TMPL_IF NAME="mandatoryfax" --><span class="required">Required</span><!-- /TMPL_IF -->
473     </li>
474         </ol>
475   </fieldset>
476
477
478 <!-- ************************ STEP_1 *********************** -->
479 <!--/TMPL_IF -->
480 <!--TMPL_IF Name="step_2"-->
481
482                 <fieldset class="rows" id="memberentry_address">
483                 <legend>Alternate address</legend><ol>
484                         <li>
485                                 <!-- TMPL_IF NAME="mandatoryB_address" -->
486                                         <label for="B_address" class="required">
487                                 <!--TMPL_ELSE-->
488                                         <label for="B_address">
489                                 <!-- /TMPL_IF-->
490                                 Address: </label>
491                                 <input type="text" id="B_address" name="B_address" size="40" value="<!-- TMPL_VAR NAME="B_address" -->" />
492           <!-- TMPL_IF NAME="mandatoryB_address" --><span class="required">Required</span><!-- /TMPL_IF -->
493                         </li>
494                         <li>
495                                 <!-- TMPL_IF NAME="mandatoryB_city" -->
496                                         <label for="B_city" class="required" >
497                                 <!--TMPL_ELSE-->
498                                         <label for="B_city">
499                                 <!-- /TMPL_IF-->
500                                 City: </label>
501                                 <input type="text" id="B_city" name="B_city" size="20" value="<!-- TMPL_VAR NAME="B_city" -->" />
502           <!-- TMPL_IF NAME="mandatoryB_city" --><span class="required">Required</span><!-- /TMPL_IF -->
503                         </li>
504                         <li>
505                                 <!-- TMPL_IF NAME="mandatoryB_zipcode" -->
506                                         <label for="B_zipcode" class="required">
507                                 <!--TMPL_ELSE-->
508                                         <label for="B_zipcode">
509                                 <!-- /TMPL_IF-->
510                                 Zipcode: </label>
511                                 <input type="text" id="B_zipcode" name="B_zipcode" maxlength="5" size="5" value="<!-- TMPL_VAR NAME="B_zipcode" -->" />
512           <!-- TMPL_IF NAME="mandatoryB_zipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
513                         </li>
514             <li>
515                 <!-- TMPL_IF NAME="mandatoryB_phone" -->
516                 <label for="B_phone" class="required">
517                 <!--TMPL_ELSE-->
518                 <label for="B_phone">
519                 <!-- /TMPL_IF-->
520                 Phone: </label>  
521                 <input type="text" id="B_phone" name="B_phone" value="<!-- TMPL_VAR NAME="B_phone" -->" />
522                 <!-- TMPL_IF NAME="mandatoryB_phone" --><span class="required">Required</span><!-- /TMPL_IF -->
523             </li>
524                         <li> 
525         <!-- TMPL_IF NAME="mandatoryB_email" -->
526           <label for="B_email" class="required">
527         <!--TMPL_ELSE-->
528           <label for="B_email">
529         <!-- /TMPL_IF-->
530         Email: </label>
531         <input type="text" id="B_email" name="B_email" size="45" value="<!-- TMPL_VAR NAME="B_email" -->" />
532                 <!-- TMPL_IF NAME="mandatoryB_email" --><span class="required">Required</span><!-- /TMPL_IF --> </li>
533             <li>
534                 <!-- TMPL_IF NAME="mandatorycontactnote" -->
535                 <label for="contactnote" class="required">
536                 <!--TMPL_ELSE-->
537                 <label for="contactnote">
538                 <!-- /TMPL_IF-->
539                 Contact note: </label>
540                 <textarea id="contactnote" name="contactnote" cols="40" rows="2"><!-- TMPL_VAR NAME="contactnote" --></textarea>
541         <!-- TMPL_IF NAME="mandatorycontactnote" --><span class="required">Required</span><!-- /TMPL_IF -->
542             </li>
543                         </ol>
544                 </fieldset>
545                 <fieldset class="rows" id="memberentry_altaddress">       
546                     <legend>Alternate Contact</legend><ol>
547                         <li>
548                             <!-- TMPL_IF NAME="mandatoryaltcontactfirstname" -->
549                                 <label for="altcontactfirstname" class="required">
550                                 <!-- TMPL_ELSE -->
551                                 <label for="altcontactfirstname">
552                                 <!-- /TMPL_IF -->
553                                 First name:</label>
554                                 <input type="text" name="altcontactfirstname" id="altcontactfirstname" value="<!-- TMPL_VAR NAME="altcontactfirstname" -->" />
555                                 <!-- TMPL_IF NAME="mandatoryaltcontactfirstname" --><span class="required">Required</span><!-- /TMPL_IF -->
556                         </li>
557                         <li>
558                             <!-- TMPL_IF NAME="mandatoryaltcontactsurname" -->
559                                 <label for="altcontactsurname" class="required">
560                                 <!-- TMPL_ELSE -->
561                                 <label for="altcontactsurname">
562                                 <!-- /TMPL_IF -->
563                                 Surname:</label>
564                                 <input type="text" name="altcontactsurname" id="altcontactsurname" value="<!-- TMPL_VAR NAME="altcontactsurname" -->" />
565                                 <!-- TMPL_IF NAME="mandatoryaltcontactsurname" --><span class="required">Required</span><!-- /TMPL_IF -->
566                         </li>
567                         <li>
568                             <!-- TMPL_IF NAME="mandatoryaltcontactaddress1" -->
569                                 <label for="altcontactaddress1" class="required">
570                                 <!-- TMPL_ELSE -->
571                                 <label for="altcontactaddress1">
572                                 <!-- /TMPL_IF -->
573                                 Address line 1:</label>
574                                 <input type="text" name="altcontactaddress1" id="altcontactaddress1" value="<!-- TMPL_VAR NAME="altcontactaddress1" -->" size="40" />
575                                 <!-- TMPL_IF NAME="mandatoryaltcontactaddress1" --><span class="required">Required</span><!-- /TMPL_IF -->
576                         </li>
577                         <li>
578                             <!-- TMPL_IF NAME="mandatoryaltcontactaddress2" -->
579                                 <label for="altcontactaddress2" class="required">
580                                 <!-- TMPL_ELSE -->
581                                 <label for="altcontactaddress2">
582                                 <!-- /TMPL_IF -->
583                                 Address line 2:</label>
584                                 <input type="text" name="altcontactaddress2" id="altcontactaddress2" value="<!-- TMPL_VAR NAME="altcontactaddress2" -->" size="40" />
585                                 <!-- TMPL_IF NAME="mandatoryaltcontactaddress2" --><span class="required">Required</span><!-- /TMPL_IF -->
586                         </li>
587                         <li>
588                             <!-- TMPL_IF NAME="mandatoryaltcontactaddress3" -->
589                                 <label for="altcontactaddress3" class="required">
590                                 <!-- TMPL_ELSE -->
591                                 <label for="altcontactaddress3">
592                                 <!-- /TMPL_IF -->
593                                 City, State:</label>
594                                 <input type="text" name="altcontactaddress3" id="altcontactaddress3" value="<!-- TMPL_VAR NAME="altcontactaddress3" -->" size="40" />
595                                 <!-- TMPL_IF NAME="mandatoryaltcontactaddress3" --><span class="required">Required</span><!-- /TMPL_IF -->
596                         </li>
597                         <li>
598                             <!-- TMPL_IF NAME="mandatoryaltcontactzipcode" -->
599                                 <label for="altcontactzipcode" class="required">
600                                 <!-- TMPL_ELSE -->
601                                 <label for="altcontactzipcode">
602                                 <!-- /TMPL_IF -->
603                                 ZIP/Post code:</label>
604                                 <input type="text" name="altcontactzipcode" id="altcontactzipcode" value="<!-- TMPL_VAR NAME="altcontactzipcode" -->" size="5" />
605                                 <!-- TMPL_IF NAME="mandatoryaltcontactzipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
606                         </li>
607                         <li>
608                             <!-- TMPL_IF NAME="mandatoryaltcontactphone" -->
609                                 <label for="altcontactphone" class="required">
610                                 <!-- TMPL_ELSE -->
611                                 <label for="altcontactphone">
612                                 <!-- /TMPL_IF -->
613                                 Phone:</label>
614                                 <input type="text" name="altcontactphone" id="altcontactphone" value="<!-- TMPL_VAR NAME="altcontactphone" -->" />
615                                 <!-- TMPL_IF NAME="mandatoryaltcontactphone" --><span class="required">Required</span><!-- /TMPL_IF -->
616                         </li>
617             </ol>
618         </fieldset>
619
620
621   <!-- TMPL_IF NAME="I" -->
622         <!-- TMPL_IF NAME="memberofinstution" -->
623         <fieldset class="rows" id="memberentry_organisation">
624                 <legend>Organizations</legend><ol>
625                 <li>
626                         <!-- TMPL_IF NAME="mandatoryphone" --> 
627                         <label for="organisations" class="required">
628                         <!--TMPL_ELSE-->
629                         <label for="organisations">
630                         <!-- /TMPL_IF-->
631                         Organization(s): </label>
632                         <!-- TMPL_VAR NAME="CGIorganisations" -->
633           <!-- TMPL_IF NAME="mandatoryphone" --><span class="required">Required</span><!-- /TMPL_IF -->
634                 </li>
635                 </ol>
636         </fieldset>
637         <!-- /TMPL_IF -->
638   <!-- /TMPL_IF -->
639               
640 <!-- /TMPL_IF -->
641 <!--TMPL_IF Name="step_3"-->
642
643   <fieldset class="rows" id="memberentry_library_management">
644     <legend>Library Management</legend><ol>
645    <li> <!-- TMPL_IF NAME="mandatorycardnumber" -->
646       <label for="cardnumber" class="required">
647     <!--TMPL_ELSE -->
648       <label for="cardnumber">
649     <!-- /TMPL_IF--> 
650     Card number: </label>
651     <input type="text" id="cardnumber" name="cardnumber" size="20" value="<!-- TMPL_VAR NAME="cardnumber" -->" />
652           <!-- TMPL_IF NAME="mandatorycardnumber" --><span class="required">Required</span><!-- /TMPL_IF --></li>
653     <li>
654       <!-- TMPL_IF NAME="mandatorybranchcode" -->
655         <label for="branchcode" class="required">
656       <!--TMPL_ELSE-->
657         <label for="branchcode">
658       <!-- /TMPL_IF-->
659       Library: </label>
660       <!-- TMPL_VAR NAME="CGIbranch" -->
661           <!-- TMPL_IF NAME="mandatorybranchcode" --><span class="required">Required</span><!-- /TMPL_IF -->
662     </li>
663     <li>
664     <!-- TMPL_IF NAME="typeloop" -->
665         <label for="categorycode">Category: </label>
666         <select id="categorycode" name="categorycode">
667         <!-- TMPL_LOOP NAME="typeloop" -->
668                 <!-- TMPL_IF EXPR="typename eq 'C'" --><optgroup label="Child"><!-- /TMPL_IF -->
669                 <!-- TMPL_IF EXPR="typename eq 'A'" --><optgroup label="Adult"><!-- /TMPL_IF -->
670                 <!-- TMPL_IF EXPR="typename eq 'S'" --><optgroup label="Staff"><!-- /TMPL_IF -->
671                 <!-- TMPL_IF EXPR="typename eq 'I'" --><optgroup label="Organization"><!-- /TMPL_IF -->
672                 <!-- TMPL_IF EXPR="typename eq 'P'" --><optgroup label="Professional"><!-- /TMPL_IF -->
673                 <!-- TMPL_IF EXPR="typename eq 'X'" --><optgroup label="Statistical"><!-- /TMPL_IF -->
674                 <!-- TMPL_LOOP NAME="categoryloop" -->
675                                 <!-- TMPL_IF NAME="categorycodeselected" -->
676                <option value="<!-- TMPL_VAR NAME="categorycode" -->" selected="selected"><!-- TMPL_VAR NAME="categoryname" --></option>
677                                 <!-- TMPL_ELSE -->
678 <option value="<!-- TMPL_VAR NAME="categorycode" -->"><!-- TMPL_VAR NAME="categoryname" --></option>
679                                 <!-- /TMPL_IF -->
680                 <!-- /TMPL_LOOP -->
681         </optgroup>
682         <!-- /TMPL_LOOP -->
683                 </select>
684     <!-- TMPL_ELSE -->
685         <span class="problem">There is no category type to add <!--TMPL_IF Name="A"-->an Adult<!--/TMPL_IF--><!--TMPL_IF Name="C"-->a Child<!--/TMPL_IF--><!--TMPL_IF Name="I"-->an Institution<!--/TMPL_IF--><!--TMPL_IF Name="P"-->a professionnal<!--/TMPL_IF--><!--TMPL_IF Name="S"-->a Staff Member<!--/TMPL_IF-->.</span>
686               <a href="/cgi-bin/koha/admin/categorie.pl">Please create one</a>
687     <!-- /TMPL_IF -->
688     </li>
689     <li>
690       <!-- TMPL_IF NAME="mandatorysort1" -->
691         <label for="sort1" class="required">
692       <!-- TMPL_ELSE -->
693         <label for="sort1">
694       <!-- /TMPL_IF-->
695       Sort 1: </label>
696       <!--TMPL_IF NAME="CGIsort1" --> 
697         <!-- TMPL_VAR NAME="CGIsort1" -->
698       <!--TMPL_ELSE-->
699         <input  type="text" id="sort1" name="sort1" size="20"  value="<!-- TMPL_VAR NAME="sort1" -->" />
700           <!-- TMPL_IF NAME="mandatorysort1" --><span class="required">Required</span><!-- /TMPL_IF -->
701       <!-- /TMPL_IF -->   
702     </li>
703     <li>
704     <!-- TMPL_IF NAME="mandatorysort2" -->
705     <label for="sort2" class="required">
706     <!-- TMPL_ELSE -->
707     <label for="sort2">
708     <!-- /TMPL_IF-->
709     Sort 2: </label>
710     <!--TMPL_IF NAME="CGIsort2" --> 
711       <!-- TMPL_VAR NAME="CGIsort2" -->
712     <!--TMPL_ELSE-->
713       <input  type="text" id="sort2" name="sort2" size="20"  value="<!-- TMPL_VAR NAME="sort2" -->" />
714           <!-- TMPL_IF NAME="mandatorysort2" --><span class="required">Required</span><!-- /TMPL_IF -->
715     <!-- /TMPL_IF --> 
716     </li>
717         </ol>
718   </fieldset>
719         <fieldset class="rows" id="memberentry_subscription">
720         <legend>Library set-up</legend><ol>
721                 <li>
722                         <!-- TMPL_IF NAME="mandatorydateenrolled" -->
723                         <label for="dateenrolled" class="required">
724                         <!--TMPL_ELSE-->
725                         <label for="dateenrolled">
726                         <!-- /TMPL_IF-->
727                         Registration date: </label>
728                         <input type="text" id="dateenrolled" name="dateenrolled"  maxlength="10" size="10" <!-- TMPL_IF NAME="metric" -->onchange="CheckDate(document.form.dateenrolled);check_manip_date('verify');"<!-- /TMPL_IF--> value="<!-- TMPL_VAR NAME="dateenrolled" -->" />
729             <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="dateenrolled_button" alt="Show Calendar" />
730       <script language="JavaScript" type="text/javascript">
731         Calendar.setup(
732           {
733             inputField : "dateenrolled",
734             ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
735             button : "dateenrolled_button"
736           }
737         );
738       </script>
739                 <!-- TMPL_IF NAME="mandatorydateenrolled" --><span class="required">Required</span><!-- /TMPL_IF -->
740                 <!-- TMPL_IF NAME="ERROR_dateenrolled" --><span class="required">(Error)</span><!-- /TMPL_IF -->
741                 </li>
742                 <li>
743                         <!-- TMPL_IF NAME="mandatorydateexpiry" -->
744                         <label for="dateexpiry" class="required">
745                         <!--TMPL_ELSE-->
746                         <label for="dateexpiry">
747                         <!-- /TMPL_IF-->
748                         Expiry date (leave blank for auto calc) </label>
749                         <input type="text" id="dateexpiry" name="dateexpiry" maxlength="10"  size="10" <!-- TMPL_IF NAME="metric" -->onchange="CheckDate(document.form.dateexpiry);check_manip_date('verify');"<!-- /TMPL_IF--> value="<!-- TMPL_UNLESS NAME="opadd" --><!-- TMPL_VAR NAME="dateexpiry" --><!-- /TMPL_UNLESS -->" />
750             <img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" id="dateexpiry_button" alt="Show Calendar" />
751       <script language="JavaScript" type="text/javascript">
752         Calendar.setup(
753           {
754             inputField : "dateexpiry",
755             ifFormat : "<!-- TMPL_VAR NAME="DHTMLcalendar_dateformat" -->",
756             button : "dateexpiry_button"
757           }
758         );
759       </script>
760                 <!-- TMPL_IF NAME="mandatorydateexpiry" --><span class="required">Required</span><!-- /TMPL_IF -->
761                 <!-- TMPL_IF NAME="ERROR_dateexpiry" --><span class="required">(Error)</span><!-- /TMPL_IF -->
762                 </li>
763                 <li>
764                         <!-- TMPL_IF NAME="mandatoryopacnote" -->
765                                 <label for="opacnote" class="required">
766                         <!--TMPL_ELSE-->
767                                 <label for="opacnote">
768                         <!-- /TMPL_IF-->        
769                         OPAC note: </label>
770                         <textarea id="opacnote" name="opacnote" cols="55" rows="5"><!-- TMPL_VAR NAME="opacnote" --></textarea>
771           <!-- TMPL_IF NAME="mandatoryopacnote" --><span class="required">Required</span><!-- /TMPL_IF -->
772                 </li>
773                 <li>
774                         <!-- TMPL_IF NAME="mandatoryborrowernotes" -->  
775                                 <label for="borrowernotes" class="required">
776                         <!--TMPL_ELSE-->
777                                 <label for="borrowernotes">
778                         <!-- /TMPL_IF-->
779                         Library note: </label>
780                         <textarea id="borrowernotes" name="borrowernotes" cols="55" rows="5"><!-- TMPL_VAR NAME="borrowernotes" --></textarea>
781           <!-- TMPL_IF NAME="mandatoryborrowernotes" --><span class="required">Required</span><!-- /TMPL_IF -->
782                 </li>
783                 </ol>
784         </fieldset>
785         <fieldset class="rows" id="memberentry_userid">
786                 <legend>OPAC login</legend><ol>
787                 <li>
788                         <!-- TMPL_IF NAME="mandatoryuserid" -->
789                         <label for="userid" class="required">
790                         <!--TMPL_ELSE-->
791                         <label for="userid">
792                         <!-- /TMPL_IF-->
793                         OPAC Login: </label>
794
795 <!-- TMPL_IF NAME="NoUpdateLogin" -->
796 <input type="text" id="userid" name="userid" size="20" disabled="disabled" value="<!-- TMPL_VAR NAME="userid" -->" />
797 <!-- TMPL_ELSE -->
798 <input type="text" id="userid" name="userid" size="20" value="<!-- TMPL_VAR NAME="userid" -->" />
799 <!-- /TMPL_IF -->
800
801           <!-- TMPL_IF NAME="mandatoryuserid" --><span class="required">Required</span><!-- /TMPL_IF -->
802                 </li>
803                 <li>
804                         <!-- TMPL_IF NAME="mandatorypassword" -->
805                         <label for="password" class="required">
806                         <!--TMPL_ELSE-->
807                         <label for="password">
808                         <!-- /TMPL_IF-->
809                         Password: </label>
810                         <!--TMPL_IF NAME="opadd"-->
811                         <!-- TMPL_IF NAME="NoUpdateLogin" -->
812                                 <input type="text" id="password" name="password" size="20"  disabled="disabled" value="<!-- TMPL_VAR NAME="password" -->" />
813 <!-- TMPL_ELSE -->
814                                 <input type="text" id="password" name="password" size="20" value="<!-- TMPL_VAR NAME="password" -->" />
815 <!-- /TMPL_IF -->
816                         <!--TMPL_ELSE-->
817                         <!--TMPL_IF NAME="password"-->
818                                 <!-- TMPL_IF NAME="NoUpdateLogin" -->
819                                         <input type="text" id="password" name="password" size="20"  disabled="disabled" value="****" />
820                                 <!-- TMPL_ELSE -->
821                                         <input type="text" id="password" name="password" size="20" value="****" />
822                                 <!-- /TMPL_IF -->
823                         <!--TMPL_ELSE-->
824                                 <!-- TMPL_IF NAME="NoUpdateLogin" -->
825                                         <input type="text" id="password" name="password" size="20"  disabled="disabled" value="" />
826                                 <!-- TMPL_ELSE -->
827                                         <input type="text" id="password" name="password" size="20" value="" />
828                                 <!-- /TMPL_IF -->
829                         <!--/TMPL_IF-->
830                         <!--/TMPL_IF-->
831           <!-- TMPL_IF NAME="mandatorypassword" --><span class="required">Required</span><!-- /TMPL_IF -->
832 <!-- TMPL_IF NAME="minPasswordLength" --><div class="hint">Minimum password length: <!-- TMPL_VAR NAME="minPasswordLength" --></div><!-- /TMPL_IF -->
833                 </li></ol>
834                 </fieldset>
835                 <!--this zones are not necessary in modif mode -->
836                 <!-- TMPL_UNLESS NAME="opadd" -->
837                 <fieldset class="rows">
838                         <legend>Patron Account Flags</legend>
839                         <ol class="radio">
840                         <!-- TMPL_LOOP NAME="flagloop" -->
841                                 <li><label class="radio" for="yes<!-- TMPL_VAR name="name" -->">
842                                 <!-- TMPL_IF EXPR="key eq 'gonenoaddress'" -->Gone no Address:<!-- /TMPL_IF -->
843                                 <!-- TMPL_IF EXPR="key eq 'debarred'" -->Debarred:<!-- /TMPL_IF -->
844                                 <!-- TMPL_IF EXPR="key eq 'lost'" -->Lost Card:<!-- /TMPL_IF -->
845                 </label>
846                                 
847                                 <label for="yes<!-- TMPL_VAR NAME="name" -->">Yes </label>
848                                 <!-- TMPL_IF NAME="yes" -->
849                                 <input type="radio" id="yes<!-- TMPL_VAR NAME="name" -->" name="<!-- TMPL_VAR NAME="name" -->" value="1" checked="checked" />
850                                 <!-- TMPL_ELSE -->
851                                 <input type="radio" id="yes<!-- TMPL_VAR NAME="name" -->" name="<!-- TMPL_VAR NAME="name" -->" value="1" />
852                                 <!-- /TMPL_IF -->
853                                 
854                                 <label for="no<!-- TMPL_VAR NAME="name" -->">No </label>
855                                 <!-- TMPL_IF NAME="no" -->
856                                 <input type="radio" id="no<!-- TMPL_VAR NAME="name" -->" name="<!-- TMPL_VAR NAME="name" -->" value="0" checked="checked"/>
857                                 <!-- TMPL_ELSE -->
858                                 <input type="radio" id="no<!-- TMPL_VAR NAME="name" -->" name="<!-- TMPL_VAR NAME="name" -->" value="0" />
859                                 <!-- /TMPL_IF -->
860
861 </li>
862                         <!-- /TMPL_LOOP -->
863                         </ol>
864                         </fieldset>
865                 <!-- /TMPL_UNLESS -->   
866 <!-- /TMPL_IF -->
867
868 <!-- TMPL_IF NAME="step_4" --><!-- TMPL_IF NAME="ExtendedPatronAttributes" -->
869   <fieldset class="rows" id="memberentry_patron_attributes">
870     <input type="hidden" name="setting_extended_patron_attributes" value="1" />
871     <legend>Additional attributes and identifiers</legend>
872     <!-- TMPL_IF NAME="no_patron_attribute_types" -->
873     No patron attribute types defined.
874     <!-- TMPL_ELSE -->
875     <table>
876         <tr>
877             <th>Type</th>
878             <th colspan="2">Value</th>
879         </tr>
880         <!-- TMPL_LOOP NAME='patron_attributes' -->
881         <tr>
882             <td><!-- TMPL_VAR NAME="code" --> (<!-- TMPL_VAR NAME="description" -->)
883             </td>
884             <td>
885                 <input type="hidden" id="<!-- TMPL_VAR NAME="form_id" -->_code" name="<!-- TMPL_VAR NAME="form_id" -->_code"
886                        value="<!-- TMPL_VAR NAME="code" -->" />
887                 <!-- TMPL_IF NAME="use_dropdown" -->
888                     <select id="<!-- TMPL_VAR NAME="form_id" -->" name="<!-- TMPL_VAR NAME="form_id" -->">
889                         <option value="" />
890                         <!-- TMPL_LOOP NAME="auth_val_loop" -->
891                             <!-- TMPL_IF NAME="selected" -->
892                                 <option value="<!-- TMPL_VAR NAME="authorised_value" -->" selected="selected">
893                                     <!-- TMPL_VAR NAME="lib" -->
894                                 </option>
895                             <!-- TMPL_ELSE -->
896                                 <option value="<!-- TMPL_VAR NAME="authorised_value" -->" >
897                                     <!-- TMPL_VAR NAME="lib" -->
898                                 </option>
899                             <!-- /TMPL_IF -->
900                         <!-- /TMPL_LOOP -->
901                     </select>
902                 <!-- TMPL_ELSE -->
903                     <input type="text" maxlength="30" value="<!-- TMPL_VAR NAME="value" -->"
904                            id="<!-- TMPL_VAR NAME="form_id" -->" name="<!-- TMPL_VAR NAME="form_id" -->" />
905                 <!-- /TMPL_IF -->
906                 <!-- TMPL_IF NAME="password_allowed" -->
907                     (Password: <input type="password" maxlength="30" value="<!-- TMPL_VAR NAME="password" -->"
908                            id="<!-- TMPL_VAR NAME="form_id" -->_password" name="<!-- TMPL_VAR NAME="form_id" -->_password" />)
909                 <!-- /TMPL_IF -->
910             </td>
911             <td>
912                 <a href="#" onclick="clear_entry(this); return false;">Clear</a>
913                 <!-- TMPL_IF NAME="repeatable" -->
914                 <a href="#" onclick="clone_entry(this); return false;">New</a>
915                 <!-- /TMPL_IF -->
916             </td>
917         </tr>
918         <!-- /TMPL_LOOP -->
919     </table>
920     <!-- /TMPL_IF -->
921   </fieldset>
922 <!-- /TMPL_IF--><!-- /TMPL_IF -->
923
924     <fieldset class="action">
925         <input type="submit" name="save" onclick="return check_form_borrowers();" value="Save" />
926       <!-- TMPL_IF NAME="opadd" -->
927        <a class="cancel" href="/cgi-bin/koha/members/member.pl">Cancel</a>
928            <!-- TMPL_ELSE -->
929           <a class="cancel" href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->">Cancel</a>
930            <!-- /TMPL_IF -->
931     </fieldset>
932 </form>
933   
934 </div>
935 </div>
936
937 <!-- TMPL_UNLESS NAME="opadd" --><div class="yui-b">
938 <!-- TMPL_INCLUDE NAME="members-menu.inc" -->
939 </div><!-- /TMPL_UNLESS -->
940 </div>
941 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->