summaryrefslogtreecommitdiff
path: root/templates/replies/form.jinja
blob: e65e2443fb0a33dcb6bd7d9274a1676216bfc139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<form action="" class="reply-form" id="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>