summaryrefslogtreecommitdiffstats
path: root/web/template/pkg_comment_form.php
blob: fb3ebffb4055e5027e1381de848332ab352a9c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div id="generic-form" class="box">
	<h2><?php echo __("Add Comment"); ?></h2>
	<form call="general-form" action="<?php echo $_SERVER['REQUEST_URI'] ?>" method="post">
		<fieldset>
<?php
if (isset($_REQUEST['comment']) && check_token()) {
	echo '<p>' . __('Comment has been added.') . '</p>';
}
?>
			<div>
				<input type="hidden" name="ID" value="<?php echo intval($row['ID']) ?>" />
				<input type="hidden" name="token" value="<?php echo htmlspecialchars($_COOKIE['AURSID']) ?>" />
			</div>
			<p>
				<label for="id_comment"><?php echo __("Comment") . ':' ?></label>
				<textarea id="id_comment" name="comment" cols="80" rows="10"></textarea>
			</p>
			<p>
				<label></label>
				<input type="submit" value="<?php echo __("Add Comment") ?>" />
			</p>
		</fieldset>
	</form>
</div>