Right this way…
Station 04 · Forms & inputs
The forms desk is the part of any house the patron actually touches. Sign your name, name a figure, press the lever. The tags behind it are simple: a form to hold them together, a label to ask the question, an input to take the answer, a button to send it on its way.
Below is a working miniature of our donation desk. Type a figure. Hover each tag and each field. Press Send it — watch the exact bundle of data leave the form.
1<form action="/donate" method="POST">2<label for="amount">3How much do you mean?4</label>5<input id="amount" name="amount" type="number" value="25" />6<button type="submit">7Send it8</button>9</form>
What the form sends
POST /donate
amount=25
(press Send it to dispatch)
Hover a tag or a field — the form is an envelope, the input is what you write, the button posts it.