21 lines
627 B
HTML
21 lines
627 B
HTML
<button class="p-12"
|
|
hx-post="/api/nota"
|
|
hx-target="#nota"
|
|
hx-swap="innerHTML"
|
|
hx-include="#nota-input"
|
|
hx-trigger="clicked, keyup[keyCode==13] from:#nota-input">
|
|
♫
|
|
</button>
|
|
<input id="nota-input" type="text" name="value" value="{{value or ''}}"
|
|
class="rounded border border-yellow-50 focus:outline-none
|
|
text-yellow-50 text-center
|
|
animate-grow max-w-xs
|
|
bg-brown p-1 m-1">
|
|
<button class="p-12"
|
|
hx-post="/api/nota"
|
|
hx-target="#nota"
|
|
hx-swap="innerHTML"
|
|
hx-include="#nota-input">
|
|
♫
|
|
</button>
|