2008-11-11 20:54:12 +00:00
|
|
|
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
|
|
|
<form id="gCommentAdd" class="gExpandedForm">
|
|
|
|
|
<fieldset>
|
|
|
|
|
<legend>Add comment</legend>
|
|
|
|
|
<div class="row">
|
2008-11-11 22:46:25 +00:00
|
|
|
<label for="gCommentAuthor"><?= _("Your Name") ?></label>
|
2008-11-11 20:54:12 +00:00
|
|
|
<input type="text" name="author" id="gCommentAuthor" class="text" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
2008-11-11 22:46:25 +00:00
|
|
|
<label for="gCommentEmail"><?= _("Your Email (not displayed)") ?></label>
|
2008-11-11 20:54:12 +00:00
|
|
|
<input type="text" name="email" id="gCommentEmail" class="text" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
2008-11-11 22:46:25 +00:00
|
|
|
<label for="gCommentText"><?= _("Comment") ?></label>
|
2008-11-11 20:54:12 +00:00
|
|
|
<textarea name="text" id="gCommentText"></textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<input type="hidden" id="gItemId" name="item_id" value="<?= $item_id ?>" />
|
2008-11-11 22:46:25 +00:00
|
|
|
<input type="submit" id="gCommentSubmit" value="<?= _("Add") ?>" />
|
2008-11-11 20:54:12 +00:00
|
|
|
</fieldset>
|
|
|
|
|
</form>
|
|
|
|
|
|