File: form_no_input_name.html

package info (click to toggle)
ruby-mechanize 2.7.6-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,480 kB
  • sloc: ruby: 11,380; makefile: 5; sh: 4
file content (16 lines) | stat: -rw-r--r-- 449 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
  <head><title>Input with no name</title></head>
  <body>
    <form name="test" action="/form_post" method="post">
      <input type="text" /><br />
      <input type="password" /><br />
      <input type="hidden" /><br />
      <input type="radio" /><br />
      <input type="checkbox" /><br />
      <input type="file" /><br />
      <textarea></textarea>
      <select></select>
      <input type="submit" />
    </form>
  </body>
</html>