You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
545 B
Cheetah
13 lines
545 B
Cheetah
{{template "header.tmpl" .}}
|
|
<h1>Create A Note</h1>
|
|
<form method="post">
|
|
<table>
|
|
<tr><td>To:</td><td><input type="text" name="note_to"></td></tr>
|
|
<tr><td>Summary:</td><td><input type="text" name="note_summary"></td></tr>
|
|
<tr><td>Content:</td><td><textarea name="note_content" rows="10" cols="50"></textarea></td></tr>
|
|
<tr><td>Public:</td><td><input type="checkbox" name="note_public"></input></td>
|
|
<tr><td colspan="2"><button type="submit" name="note_publish">Publish</button></td></tr>
|
|
</table>
|
|
</form>
|
|
{{template "footer.tmpl" .}}
|