File: 1a-test22.html

package info (click to toggle)
libcgi-formbuilder-perl 3.08-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,204 kB
  • sloc: perl: 7,201; makefile: 13
file content (33 lines) | stat: -rw-r--r-- 1,295 bytes parent folder | download | duplicates (7)
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
<form action="TEST" method="post">
<div><input id="_submitted" name="_submitted" type="hidden" value="1" /></div>
<table>
<tr valign="top">
  <td>Favorite Color</td>
  <td><table>
  <tr>
    <td><input id="favorite_color_red" name="favorite_color" type="radio" value="red" /></td>
    <td><label for="favorite_color_red">red</label></td>
  </tr>
  <tr>
    <td><input id="favorite_color_green" name="favorite_color" type="radio" value="green" /></td>
    <td><label for="favorite_color_green">green</label></td>
  </tr>
  <tr>
    <td><input id="favorite_color_blue" name="favorite_color" type="radio" value="blue" /></td>
    <td><label for="favorite_color_blue">blue</label></td>
  </tr>
  <tr>
    <td><input id="favorite_color_yellow" name="favorite_color" type="radio" value="yellow" /></td>
    <td><label for="favorite_color_yellow">yellow</label></td>
  </tr>
  <tr>
    <td><input id="_favorite_color" name="favorite_color" type="radio" value="_other_favorite_color" /></td>
    <td><label for="_favorite_color">Other:</label></td>
  </tr>
  </table> <input id="_other_favorite_color" name="_other_favorite_color" type="text" /></td>
</tr>
<tr valign="top">
  <td align="center" colspan="2"><input id="_submit" name="_submit" type="submit" value="Submit" /></td>
</tr>
</table>
</form>