File: big-empty.html

package info (click to toggle)
golang-github-jeremija-gosubmit 0.2.8-1~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 176 kB
  • sloc: makefile: 7
file content (48 lines) | stat: -rw-r--r-- 1,398 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<body>
<form id="multipart" method="post" enctype="multipart/form-data" action="/submit">

  <select name="sel1">
    <option value="1">one</option>
    <option value="2">two</option>
    <option value="3">three</option>
  </select>

  <select name="sel2" multiple required>
    <option value="4">four</option>
    <option value="5">five</option>
    <option value="6">six</option>
  </select>

  <input type="checkbox" name="chk" value="subscribe-mail" required>
  <input type="checkbox" name="chk" value="subscribe-phone" required>

  <input type="radio" name="contact" value="call" required>
  <input type="radio" name="contact" value="phone" required>

  <input type="email" name="email" required>
  <input type="text" name="firstName" pattern="[A-Z][a-z]+" required>
  <input type="text" name="lastName" required>

  <input type="number" name="age" min="18" max="99" required>

  <input type="text" name="captcha" maxlength="5" required>

  <input type="url" name="website" required>
  <input type="date" name="someDate" required>

  <input type="other-type" name="other" required>

  <input type="file" name="profile" required>

  <textarea name="post">Big Text</textarea>

  <input type="hidden" name="csrf" value="1234">

  <button type="submit" name="action" value="Save 1">Save</button>
  <input type="submit" name="action" value="Save 2">
</form>

</body>
</html>