]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/addcomment.tmpl
fix MSIE layout for AddComment
[SourceForge/phpwiki.git] / themes / default / templates / addcomment.tmpl
1 <?php // -*- php -*-
2   rcs_id('$Id: addcomment.tmpl,v 1.5 2006-12-01 07:51:16 rurban Exp $');
3   $request->setArg('action',false);
4 ?>
5 <div class="wikicomment wikicomment-form">
6 <form action="<?=$request->getPostURL()?>" method="post" class="wikiaction"
7       accept-charset="<?=CHARSET?>">
8   <input type="hidden" name="comment[pagename]" value="<?=$PAGENAME?>" />
9   <?= HiddenInputs($request->getArgs()) ?>
10   <table class="wikicomment-form">
11      <tr><td width="100%"><textarea class="commentedit" rows="3" cols="55"
12                        name="comment[body]" wrap="virtual"></textarea></td>
13          <td class="submit-button"><input type="submit" value="<?=
14 _("Add Comment")
15 ?>"
16                      name="comment[addcomment]" class="wikiaction" /></td>
17      </tr>
18   </table>
19 </form>
20 </div>