Mercurial > p > roundup > code
diff roundup/templates/classic/html/user.register @ 1144:db13f46cb5f9
password edit now has a confirmation field
registration error punts back to register page
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sun, 15 Sep 2002 22:41:15 +0000 |
| parents | cf30c6cdca02 |
| children | b862bbf2067a |
line wrap: on
line diff
--- a/roundup/templates/classic/html/user.register Fri Sep 13 08:20:13 2002 +0000 +++ b/roundup/templates/classic/html/user.register Sun Sep 15 22:41:15 2002 +0000 @@ -8,6 +8,10 @@ <tal:block tal:condition="editok"> <form method="POST" onSubmit="return submit_once()" enctype="multipart/form-data"> +<input type="hidden" name=":template" value="register"> +<input type="hidden" name=":required" value="username"> +<input type="hidden" name=":required" value="password"> +<input type="hidden" name=":required" value="address"> <table class="form"> <tr> @@ -22,6 +26,10 @@ <th>Login Password</th> <td tal:content="structure context/password/field">password</td> </tr> + <tr> + <th>Confirm Password</th> + <td tal:content="structure context/password/confirm">password</td> + </tr> <tr tal:condition="python:request.user.hasPermission('Web Roles')"> <th>Roles</th> <td tal:condition="exists:item"
