html-over-websockets-with-d.../app/website/templates/components/link.html

11 lines
406 B
HTML
Raw Normal View History

2021-11-21 09:21:39 +01:00
<form class="link">
2021-11-20 19:54:57 +01:00
{# Primary data #}
<input type="hidden" name="action" value="{{ action }}">
<input type="hidden" name="value" value="{{ value }}">
{# Secondary data #}
{% if page %}
<input type="hidden" name="page" value="{{ page }}">
{% endif %}
{# Button #}
2021-11-21 09:21:39 +01:00
<button class="link__button" type="button" hx-ws="send" hx-trigger="click">{{ text }}</button>
2021-11-20 19:54:57 +01:00
</form>