blob: 3fe5064e90d7fa701610150aecbf96454c316c0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<form id="article-comment-form" class="card comment-form"
hx-post="/htmx/articles/{{ .Project.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="{{ .Project.User.Image }}" class="comment-author-img" />
<button class="btn btn-sm btn-primary">
Post Comment
</button>
</div>
</form>
|