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