summary refs log tree commit diff stats
path: root/theme/admin/write.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'theme/admin/write.tpl')
-rwxr-xr-xtheme/admin/write.tpl26
1 files changed, 13 insertions, 13 deletions
diff --git a/theme/admin/write.tpl b/theme/admin/write.tpl index 0d8fb24..0371ace 100755 --- a/theme/admin/write.tpl +++ b/theme/admin/write.tpl
@@ -1,14 +1,14 @@
1<H2>Write a post</H2><P> 1<h2>Write a post</h2>
2 2
3<FORM ACTION="/admin/writePost.php?submit=" METHOD="POST"> 3<form action="/admin/writePost.php?submit=" method="post">
4 Post Title: <INPUT TYPE="text" NAME="title"><BR> 4 Post Title: <input type="text" name="title" /><br />
5 <TEXTAREA NAME="text" COLS="80" ROWS="20"></TEXTAREA><P> 5 <textarea name="text" cols="80" rows="20"></textarea><br />
6 Tags (comma-seperated): <INPUT TYPE="text" NAME="tags" VALUE="update"><BR> 6 Tags (comma-seperated): <input type="text" name="tags" value="update" /><br />
7 Post Type: <SELECT NAME="type" SIZE="4"> 7 Post Type: <select name="type" size="4">
8 <OPTION VALUE="draft">Draft</OPTION> 8 <option value="draft">Draft</option>
9 <OPTION VALUE="normal" SELECTED>Normal (Article-style) Post</OPTION> 9 <option value="normal" selected="selected">Normal (Article-style) Post</option>
10 <OPTION VALUE="priority">High-Priority Post</OPTION> 10 <option value="priority">High-Priority Post</option>
11 <OPTION VALUE="instant">Instant Post</OPTION> 11 <option value="instant">Instant Post</option>
12 </SELECT><BR> 12 </select><br />
13 <INPUT TYPE="submit" VALUE="Write post"> 13 <input type="submit" value="Write post" />
14</FORM> 14</form>