niche/templates/password.html
Michael Hope 12953d9616 Tidied up all of the forms. Now uses CSS.
Added a hook to automatically add descriptions and style to forms.
Now need the 'current password' when changing the password.
Changed 'content' to 'comment' for the new comment form.
2013-10-10 22:05:49 +02:00

13 lines
211 B
HTML

$def with (form)
<div id="commentform">
<form name="main" method="post">
$if not form.valid:
<p class="error">Something's wrong</p>
$:form.render_css()
<br/>
<input type="submit"/>
</form>
</div>