[CMF-checkins] CVS: CMF - password_form.pt:1.1
andrew@digicool.com
andrew@digicool.com
Thu, 21 Jun 2001 15:54:14 -0400 (EDT)
Update of /cvs-repository/CMF/CMFDecor/skins/zpt_generic
In directory korak.digicool.com:/tmp/cvs-serv32041/zpt_generic
Added Files:
password_form.pt
Log Message:
*converted to ZPT
--- Added File password_form.pt in package CMF ---
<html xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
metal:use-macro="here/main_template/macros/master">
<body>
<div metal:fill-slot="main">
<div tal:define="member python: here.portal_membership.getAuthenticatedMember()">
<div class="Desktop">
<h1> Change your Password </h1>
<div class="error"
tal:replace="request/error"
tal:condition="request/error|nothing"><hr></div>
<form action="change_password" method="post">
<table class="FormLayout">
<tr>
<th>Username
</th>
<td><span tal:replace="member">You</span>
</td>
</tr>
<tr>
<th>New password
</th>
<td><input type="password" name="password">
</td>
</tr>
<tr>
<th>Confirm new password
</th>
<td><input type="password" name="confirm">
</td>
</tr>
<tr>
<th>Domains
</th>
<td>
<input type="text" name="domains:tokens" value=""><br>
<em> If you do not know what this field is for, leave it blank. </em>
</td>
</tr>
<tr>
<td><br></td>
<td><input type="submit" value=" Change ">
</td>
</tr>
</table>
</form>
</div>
</div>
</div>
</body>
</html>