blob: 163fd180fb64afc88970ef253ce804666e5c8d19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<? defined("SYSPATH") or die("No direct script access."); ?>
<form id="gCommentAdd" class="gExpandedForm">
<fieldset>
<legend>Add comment</legend>
<div class="row">
<label for="gCommentAuthor"><?= _("Your Name") ?></label>
<input type="text" name="author" id="gCommentAuthor" class="text" />
</div>
<div class="row">
<label for="gCommentEmail"><?= _("Your Email (not displayed)") ?></label>
<input type="text" name="email" id="gCommentEmail" class="text" />
</div>
<div class="row">
<label for="gCommentText"><?= _("Comment") ?></label>
<textarea name="text" id="gCommentText"></textarea>
</div>
<input type="hidden" id="gItemId" name="item_id" value="<?= $item_id ?>" />
<input type="submit" id="gCommentSubmit" value="<?= _("Add") ?>" />
</fieldset>
</form>
|