summaryrefslogtreecommitdiff
path: root/templates/comments/form.jinja
blob: 4934149efab315c8e67232819fddd3ac54a32b19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<form action="" class="comment-form" id="comment-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="50" form="comment-form" name="content" id="content" />
    </textarea>
  </div>
  <div>
    <input type="submit" value="Submit" />
  </div>
</form>

<script type="text/javascript"  src="{{ url_for('static', filename='js/comments/comment_form.js') }}"
        type="module"
></script>