aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/reply_form.php
blob: 84d8121a8aa3b6b1f7445c9fa0068e92b2189c65 (plain)
1
2
3
4
5
6
7
8
9
10
11
<form class="noteReplyForm" id="replyForm-<?= $note->id ?>"
    _="on submit send toggle to previous <button.reply/> on toggle or submit toggle @hidden" hidden
    hx-post="/fragment/note/<?= $note->id ?>/reply" hx-disabled-elt="find button" hx-swap="outerHTML">
    <div class="row">
        <label for="replyContent-<?= $note->id ?>"><?= __('writeReply.label') ?></label>
        <textarea id="replyContent-<?= $note->id ?>" name="content" required></textarea>
    </div>
    <div class="row">
        <button><?= __('writeReply.action') ?></button>
    </div>
</form>