This commit is contained in:
Marc Beninca 2025-02-10 19:46:34 +01:00
parent 4f550383f1
commit a519cce5a9
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -108,54 +108,52 @@
<form action="/route" method="POST">
<!--
<button>
<button type="button" onclick="f()">Hit!</button>
<button type="submit">Send!</button>
<fieldset>
<legend>
<legend>Caption</legend>
elements…
</fieldset>
<label>Label for checkbox
<input value="" name="cb" type="checkbox" placeholder="Checkbox">
<input value="" name="cb" type="checkbox" placeholder="Checkbox" required>
</label>
<label>Label for date
<input value="" name="dt" type="date" placeholder="Date">
<input value="" name="dt" type="date" placeholder="Date" required>
</label>
<label>Label for email
<input value="" name="em" type="email" placeholder="Email">
<input value="" name="em" type="email" placeholder="Email" required>
</label>
<label>Label for file
<input value="" name="fl" type="file" placeholder="File">
<input value="" name="fl" type="file" placeholder="File" required>
</label>
<label>Label for number
<input value="" name="nb" type="number" placeholder="Number">
<input value="" name="nb" type="number" placeholder="Number" required>
</label>
<label>Label for password
<input value="" name="pw" type="password" placeholder="Password">
<input value="" name="pw" type="password" placeholder="Password" required>
</label>
<label>Label for radio
<input value="" name="rd" type="radio" placeholder="Radio">
</label>
<label>Label for submit
<input value="" name="sm" type="submit" placeholder="Submit">
<input value="" name="rd" type="radio" placeholder="Radio" required>
</label>
<label>Label for text
<input value="" name="tt" type="text" placeholder="Text">
<input value="" name="tt" type="text" placeholder="Text" required>
</label>
<select>
<option>
<option>
<select name="" required>
<option value="1">First</option>
<option value="2" selected>Second</option>
</select>
<textarea name="ta" maxlength="512">
<textarea name="ta" cols="80" rows="8" maxlength="640" required>
Text
</textarea>
-->