File: form.html

package info (click to toggle)
ulfius 2.7.15-2.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,856 kB
  • sloc: ansic: 23,025; makefile: 708; sh: 140
file content (24 lines) | stat: -rw-r--r-- 1,020 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<body>

<form action="submit" method="post">
    <input type="text" name="textParam" value="textValue"/><br/>
    <input type="checkbox" name="checkboxParam" id="checkboxParam" value="checkboxValue" checked="true"/><label for="checkboxParam">Checkbox</label><br/>
    <input type="radio" name="radioParam" id="radioParam1" value="radioValue1" checked="true"/><label for="radioParam1">Radio 1</label><br/>
    <input type="radio" name="radioParam" id="radioParam2" value="radioValue2"/><label for="radioParam2">Radio 2</label><br/>
    <select name="selectOne">
      <option value="value1">Value1</option>
      <option value="value2">Value2</option>
      <option value="value3">Value3</option>
    </select><br/>
    <select name="selectMultiple" multiple>
      <option value="value1">Value1</option>
      <option value="value2">Value2</option>
      <option value="value3">Value3</option>
    </select><br/>
    <input type="submit" value="send form" name="submit"/>
</form>

</body>
</html>