blob: 49fcafcda5e063822635540ba418fb43ccce5faa (
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"></textarea>
</div>
<div class="row">
<button><?= __('writeNote.action') ?></button>
</div>
</form>
|