aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/write_note_form.php
blob: 38a99931b78d21bb61ea067b63ca5dc2d8e7965a (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><?= __('writeNote.action') ?></button>
    </div>
</form>