Correct way to create button for html
1 answer
There are a few differences, but from your code the most relevant is
<input type="button">
since the input field is submitted when the form is submitted to the server for elab and you can eval serverside assign the value attribute to the input signal attribute
<button type="button"></button>
is only a local client tag
0
source to share