content,
<span xmlns:kid="http://purl.org/kid/ns#" kid:omit="">
<?python
SESSION = redfoot.namespace("http://redfoot.net/3.0/session#")
if request.session_id:
message = redfoot.value(request.session_id, SESSION.message)
else:
message = ""
?>
<p>${message}</p>
<form action="process/" method="POST">
<table>
<tr>
<th>Username</th>
<td><input type="text" name="uid" value=""/></td>
</tr>
<tr>
<th>Name</th>
<td><input type="text" name="name" value=""/></td>
</tr>
<tr>
<th>Password</th>
<td><input type="password" name="password"/></td>
</tr>
<tr>
<th>Verify</th>
<td><input type="password" name="verify"/></td>
</tr>
<tr>
<th> </th>
<td><input type="submit" value="register"/></td>
</tr>
</table>
<input type="hidden" name="return_uri" value="${request.headers.get('referer', '%s/' % request.host)}"/>
<input type="hidden" name="register_uri" value="${request.uri}"/>
</form>
</span>
Comments regarding http://redfoot.net/3.0/aspects/register/auth_register
Login to submit a comment.