aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/write_note_form.php
blob: 9b7c61c384d501bbf49659246187b9a125f13188 (plain)
1
2
3
4
5
6
7
8
9
<form action="/todo" method="post" hx-post="/fragment/note" hx-swap="outerHTML" hx-disabled-elt="find button">
    <div class="row">
        <label for="noteContent"><?= __('writeNote.label') ?></label>
        <textarea name="content" id="noteContent" required></textarea>
    </div>
    <div class="row">
        <button class="primary"><?= __('writeNote.action') ?></button>
    </div>
</form>