Koha/koha-tmpl/intranet-tmpl/prog/en/members/borrowers_details.tmpl
kados 5f4542992a This is a minor change, but affects all templates:
previously, it wasn't possible to insert anything into the <head> on
an individual template unless it was the title of the page. Now, the
structure is a bit more flexible to allow additional head elements to
be included.
2007-03-11 21:08:11 +00:00

61 lines
1.5 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Borrower Details</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<div id="mainbloc">
<h1>BORROWER DETAILS</h1>
<form name="form" method="post" action="/cgi-bin/members/borrowers_details.pl">
<div >
<!-- TMPL_IF NAME="Institution"-->
<p>
<label>borrower categorie</label>
<input type="text" name="description" size="20" value="<!-- TMPL_VAR NAME="description" -->" >
</p>
<p>
<label>organisation name</label>
<input style="text-transform:uppercase;" type="text" name="surname" size="20" value="<!-- TMPL_VAR NAME="surname" -->" >
</p>
<!-- TMPL_ELSE -->
<p>
<label>borrower categorie</label>
<input type="text" name="description" size="20" value="<!-- TMPL_VAR NAME="description" -->" >
</p>
<p>
<label>title</label>
<input type="text" name="title" size="20" value="<!-- TMPL_VAR NAME="title" -->" >
</p>
<p>
<label>surname</label>
<input style="text-transform:uppercase;" type="text" name="surname" size="20" value="<!-- TMPL_VAR NAME="surname" -->" >
</p>
<p>
<label>firstname</label>
<input style="text-transform:capitalize;" type="text" name="firstname" size="20" value="<!-- TMPL_VAR NAME="firstname" -->">
</p>
<p>
<label>Date of birth </label>
<input type="text" name="dateofbirth" size="20" value="<!-- TMPL_VAR NAME="dateofbirth" -->">
</p>
<!-- /TMPL_IF -->
<p>
<div align="center">
<a href="#" onclick="window.close()">Close Window</a>
</div>
</p>
</form>