]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/addcomment.tmpl
Use CSS
[SourceForge/phpwiki.git] / themes / default / templates / addcomment.tmpl
1 <?php
2   $request->setArg('action',false);
3 ?>
4 <div class="wikicomment wikicomment-form">
5 <?php if (!$WikiTheme->DUMP_MODE) { ?>
6 <form action="<?php echo $request->getPostURL()?>" method="post" class="wikiaction"
7       accept-charset="UTF-8">
8   <input type="hidden" name="comment[pagename]" value="<?php echo $PAGENAME?>" />
9   <?php echo HiddenInputs($request->getArgs()) ?>
10   <table class="wikicomment-form">
11      <tr><td><textarea class="commentedit" rows="3" cols="55"
12                        name="comment[content]"></textarea></td>
13          <td class="submit-button"><input type="submit" value="<?php echo 
14 _("Add Comment")
15 ?>"
16                      name="comment[addcomment]" class="wikiaction" /></td>
17      </tr>
18   </table>
19 </form>
20 <?php } ?>
21 </div>