summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-02-06 16:29:04 -0600
committerHombreLaser <sebastian-440@live.com>2024-02-06 16:29:04 -0600
commit3f1d5bbdcee41a483f9a7f36b0ef56010ac24e10 (patch)
tree946e4b76e6311ea5b4b79eb32847c6b916a2fad4 /templates
parent8ff7b349bb6d9e0cd2516c6cb76a52bb4c4a991d (diff)
Add comment form
Diffstat (limited to 'templates')
-rw-r--r--templates/comments/form.jinja20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/comments/form.jinja b/templates/comments/form.jinja
new file mode 100644
index 0000000..0516792
--- /dev/null
+++ b/templates/comments/form.jinja
@@ -0,0 +1,20 @@
+<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>
+ <input type="text" name="content" id="content" />
+ </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>