summaryrefslogtreecommitdiff
path: root/templates/replies/form.jinja
blob: f585d4e1df8aadba36efa17b191bc467dca4fbc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<form action="" class="reply-form"  method="post">
    <div>
	<label for="author"> Name: </label>
	<input type="text" name="author" id="author" />
    </div>
    <div>
	<label for="email"> Email: </label>
	<input type="text" name="email" id="email" />
    </div>
    <div>
	<textarea rows="4" cols="40" form="reply-form" name="content" id="content" />
    </textarea>
    </div>
    <div>
	<input type="submit" value="Submit" />
    </div>
</form>