aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/templates/articles/partials/comments-form.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/web/templates/articles/partials/comments-form.tmpl')
-rw-r--r--cmd/web/templates/articles/partials/comments-form.tmpl18
1 files changed, 18 insertions, 0 deletions
diff --git a/cmd/web/templates/articles/partials/comments-form.tmpl b/cmd/web/templates/articles/partials/comments-form.tmpl
new file mode 100644
index 0000000..09f9697
--- /dev/null
+++ b/cmd/web/templates/articles/partials/comments-form.tmpl
@@ -0,0 +1,18 @@
+<form id="article-comment-form" class="card comment-form"
+ hx-post="/htmx/articles/{{ .Article.Slug }}/comments"
+ hx-target="#article-comments-wrapper" hx-swap="afterbegin show:top"
+
+ {{ if .IsOob }}
+ hx-swap-oob="true"
+ {{ end }}
+>
+ <div class="card-block">
+ <textarea class="form-control" placeholder="Write a comment..." rows="3" name="comment"></textarea>
+ </div>
+ <div class="card-footer">
+ <img src="{{ .Article.User.Image }}" class="comment-author-img" />
+ <button class="btn btn-sm btn-primary">
+ Post Comment
+ </button>
+ </div>
+</form> \ No newline at end of file