File: main.inc

package info (click to toggle)
libcgi 1.0-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 940 kB
  • ctags: 268
  • sloc: sh: 2,700; ansic: 2,134; makefile: 232
file content (50 lines) | stat: -rw-r--r-- 1,995 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
49
50
        <td valign="Top" bgcolor="#ffffff">
      <table cellpadding="2" cellspacing="2" border="0" align="Center" width="80%">
	<form action="form2.cgi" method="get">
        <tbody>
          <tr>
            <td valign="Top" width="30%"><font face="Helvetica, Arial, sans-serif" size="1"> Name:</font></td>
            <td valign="Top"><input type="text" name="name" size="20"></td>
          </tr>
          <tr>
            <td valign="Top" width="30%"><font face="Helvetica, Arial, sans-serif" size="1">Age:</font></td>
            <td valign="Top"><input type="text" name="age" size="10"></td>
          </tr>
          <tr>
            <td valign="Top" width="30%"><font face="Helvetica, Arial, sans-serif" size="1">Gender:</font></td>
            <td valign="Top"><select name="gender">
		<option value="Unknown" selected>-- Choose one --</option>
		<option value="Male">Male</option>
		<option value="Female">Female</option>
		</select>
	</td>
          </tr>
          <tr>
            <td valign="Top" width="30%"><font face="Helvetica, Arial, sans-serif" size="1">
Radio button 1:</font></td>
            <td valign="Top"><font face="helvetica, arial, sans-serif" size="1">
	<input type="radio" name="radiobutton1" value="yes" checked>Yes
	&nbsp;&nbsp;&nbsp;
	<input type="radio" name="radiobutton1" value="no">No
	</font>
	</td>
          </tr>
          <tr>
            <td valign="Top" width="30%"><font face="Helvetica, Arial, sans-serif" size="1">Radio button 2:</font>
            </td>
            <td valign="Top">
		<font face="helvetica, arial, sans-serif" size="1">
		<input type="radio" name="radiobutton2" value="yes" checked>Yes
		&nbsp;&nbsp;&nbsp;
		<input type="radio" name="radiobutton2" value="no">No
		</font>
            </td>
          </tr>
          <tr>
            <td valign="Top" colspan="2" align="center"><input type="submit" name="action" value=" Click to submit">
            </td>
          </tr>
        </tbody>
	</form>
	main.inc
      </table>