Lines 372-387
Link Here
|
372 |
[% IF ( Koha.Preference('SelfCheckoutByLogin') ) %] |
372 |
[% IF ( Koha.Preference('SelfCheckoutByLogin') ) %] |
373 |
<legend>Log in to your account</legend> |
373 |
<legend>Log in to your account</legend> |
374 |
<label for="patronlogin">Login:</label> |
374 |
<label for="patronlogin">Login:</label> |
375 |
<input type="text" id="patronlogin" class="focus" size="20" name="patronlogin" /> |
375 |
<input type="text" id="patronlogin" class="focus" size="20" name="patronlogin" onkeypress="return checkEnter(event)" /> |
376 |
<label for="patronpw">Password:</label> |
376 |
<label for="patronpw">Password:</label> |
377 |
<input type="password" id="patronpw" size="20" name="patronpw" /> |
377 |
<input type="password" id="patronpw" size="20" name="patronpw" onkeypress="return checkEnter(event)" /> |
378 |
<fieldset class="action"> |
378 |
<fieldset class="action"> |
379 |
<button type="submit" class="btn">Log in</button> |
379 |
<button type="submit" class="btn">Log in</button> |
380 |
</fieldset> |
380 |
</fieldset> |
381 |
[% ELSE %] |
381 |
[% ELSE %] |
382 |
<div class="input-append"> |
382 |
<div class="input-append"> |
383 |
<label for="patronid">Please enter your card number:</label> |
383 |
<label for="patronid">Please enter your card number:</label> |
384 |
<input type="text" id="patronid" class="focus" size="20" name="patronid" autocomplete="off" /> |
384 |
<input type="text" id="patronid" class="focus" size="20" name="patronid" autocomplete="off" onkeypress="return checkEnter(event)" /> |
385 |
<button type="submit" class="btn">Submit</button> |
385 |
<button type="submit" class="btn">Submit</button> |
386 |
</div> |
386 |
</div> |
387 |
[% END %] |
387 |
[% END %] |