niche/templates/password.html
Michael Hope d87c727ccb Add login/logut/password changing
Add messages.
Add a basic stylesheet.
Add sessions.
2012-05-06 18:43:07 +12:00

9 lines
166 B
HTML

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