Koha/koha-tmpl/intranet-tmpl/prog/en/members/member-password.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

32 lines
1.2 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title><!-- TMPL_IF NAME="newpassword" -->Password Updated <!-- TMPL_ELSE -->Update Password for <!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --><!-- /TMPL_IF --></title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<!-- TMPL_INCLUDE NAME="menus.inc" -->
<!-- TMPL_INCLUDE NAME="menu-members.inc" -->
<!-- TMPL_IF NAME="newpassword" -->
<h1>Password Updated</h1>
<!-- TMPL_ELSE -->
<form method="post" action="/cgi-bin/koha/members/member-password.pl">
<h1>Change Username and/or Password for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></h1>
<!-- TMPL_IF NAME="warn" -->
<p>You have entered a User ID that already exists. Please choose another one.</p>
<!-- /TMPL_IF -->
<p>
<label>New UserID:</label>
<input type="hidden" name="member" value="<!-- TMPL_VAR NAME="member" -->" />
<input name="newuserid" size="20" value="<!-- TMPL_VAR NAME=userid -->" />
</p>
<p>
<label>New Password:</label>
<input name="newpassword" type="text" size="20" value="<!-- TMPL_VAR NAME="defaultnewpassword" -->" />
</p>
<p><input type="submit" value="Confirm Password" /></p>
</form><!-- /TMPL_IF -->
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->