]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/blogform.tmpl
reformatting
[SourceForge/phpwiki.git] / themes / default / templates / blogform.tmpl
1 <?php // -*- php -*-
2   rcs_id('$Id: blogform.tmpl,v 1.6 2005-02-02 19:01:04 rurban Exp $');
3 ?>
4 <div class="wikiblog wikiblog-form">
5 <form action="<?=$request->getPostURL()?>" method="post" class="wikiaction"
6       accept-charset="<?=$charset?>">
7   <input type="hidden" name="blog[pagename]" value="<?=$PAGENAME?>" />
8   <?= HiddenInputs($request->getArgs()) ?>
9   <table class="wikiblog-form">
10      <caption><?=
11 _("Add a Comment")
12 ?></caption>
13      <col class="label" width="1*" /><col class="input" width="100*" />
14      <tr><th align="right"><?=
15 _("Summary").':'
16 ?></th>
17          <td><input class="wikitext" type="text" size="60"
18                     maxlength="256" name="blog[summary]" value="" /></td>
19      </tr>
20      <tr><th align="right"><?=
21 _("Comment").':'
22 ?></th>
23          <td><textarea class="blogedit" rows="5" cols="60"
24                        name="blog[body]" wrap="virtual"></textarea></td>
25      </tr>
26      <tr><td colspan="2" align="center" class="submit-button"
27              ><input type="submit" value="<?=
28 _("Add Comment")
29 ?>"
30                      name="blog[addblog]" class="wikiaction" /></td>
31      </tr>
32   </table>
33 </form>
34 </div>
35