Koha/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendbasketform.tt
Marcel de Rooy 2370695fb9 Bug 18304: [QA Follow-up] Add id to paragraph tag
See Bugzilla, comment 4.

Note: the id is unique in the Koha codebase (git grepped).

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
2017-03-31 14:27:36 +00:00

55 lines
2.9 KiB
Text

[% USE Koha %]
[% INCLUDE 'doc-head-open.inc' %]
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Sending your cart</title>
[% INCLUDE 'doc-head-close.inc' %]
[% BLOCK cssinclude %][% END %]
</head>
[% INCLUDE 'bodytag.inc' bodyid='addtolist' bodyclass='popup' %]
<div class="main">
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<div id="usersendbasket">
[% IF ( email_add ) %]
[% IF ( SENT ) %]
<h1>Message sent</h1>
<div class="dialog dialog-success">
<p>The cart was sent to: [% email_add | html %]</p>
</div>
<p><a class="focus close" href="#">Close window</a></p>
[% END %]
[% IF ( error ) %]
<div class="alert">
<p>There was an error sending the cart.</p>
</div>
[% END %]
[% ELSE %]
<h1>Sending your cart</h1>
<form action="/cgi-bin/koha/opac-sendbasket.pl" method="post" id="sendbasketform">
<fieldset>
<label for="email_add">Email address:</label>
<input type="text" id="email_add" name="email_add" size="43" class="focus" />
<label for="comment">Comment:</label>
<textarea id="comment" name="comment" rows="4" cols="40"></textarea>
<input type="hidden" name="bib_list" value="[% bib_list %]" />
<input type="hidden" name="csrf_token" value="[% csrf_token %]" />
</fieldset>
[% IF Koha.Preference('RequestOnOpac') || Koha.Preference('OpacRenewalAllowed') %]<p id="donotrequestbymail">Please do not use this mail to request or renew books.</p>[% END %]
<fieldset class="action">
<input type="submit" class="btn" value="Send" />
<a class="cancel close" href="#">Cancel</a>
</fieldset>
</form>
[% END # / IF email_add %]
</div> <!-- / #usersendbasket -->
</div> <!-- / .span12 -->
</div> <!-- / .row-fluid -->
</div> <!-- / .container-fluid -->
</div> <!-- / .main -->
[% INCLUDE 'opac-bottom.inc' is_popup=1 %]
[% BLOCK jsinclude %][% END %]