Koha/koha-tmpl/opac-tmpl/prog/en/modules/opac-sendbasketform.tmpl
Owen Leonard 235f9865a1 Adding IDs to popups to add flexibility to customization.
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
2008-04-25 07:09:16 -05:00

38 lines
1.4 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" --><!-- TMPL_IF NAME="LibraryNameTitle" --><!-- TMPL_VAR NAME="LibraryNameTitle" --><!-- TMPL_ELSE -->Koha Online<!-- /TMPL_IF --> Catalog &rsaquo; Sending Your Cart
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
</head>
<body style="padding: 1em;" id="sendbasket">
<!-- TMPL_IF NAME="email_add" -->
<!-- TMPL_IF NAME="SENT" -->
<h3>Message Sent</h3>
<p>The cart was sent to: <!-- TMPL_VAR NAME="email_add" --></p>
<p><a href="#" onclick="window.close(); return false;">Close window</a></p>
<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="error" -->
<p>Problem sending the cart...</p>
<!-- /TMPL_IF -->
<!-- TMPL_ELSE -->
<form action="<!-- TMPL_VAR NAME="url" -->" method="post">
<fieldset class="rows">
<legend>Sending your cart</legend>
<ol> <li>
<label for="email_add">E-mail Address:</label>
<input type="text" id="email_add" name="email_add" size="43" />
</li>
<li>
<label for="comment">Comment:</label>
<textarea id="comment" name="comment" rows="4" cols="40"></textarea>
</li>
<li>
<input type="hidden" name="bib_list" value="<!-- TMPL_VAR NAME="bib_list" -->" />
</li></ol></fieldset>
<fieldset class="action"> <input type="submit" value="Send" /> <a class="cancel" href="#" onclick="window.close(); return false;">Cancel</a> </fieldset>
</form>
<!-- /TMPL_IF -->
</body>
</html>