File: form.html

package info (click to toggle)
wn 2.0.5-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,208 kB
  • ctags: 1,499
  • sloc: ansic: 14,439; sh: 2,430; perl: 1,360; makefile: 291
file content (105 lines) | stat: -rw-r--r-- 2,599 bytes parent folder | download
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!doctype html public "-//W3C//DTD HTML 3.2 Final//EN">
<html>
  <head>
    <title>WN Fill-Out Form Example</title>

    <link rev="made" href="mailto:john@math.nwu.edu">

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
    <meta http-equiv="last-modified" content="Sun, 10 May 1998 18:07:18 GMT">
    <meta http-equiv="keywords" content="WN form example">
  </head>

  <body bgcolor="#FFFFFF">
    <p>
      <a href="http://hopf.math.nwu.edu/"><img
        src="../images/powered.jpg"
        border="0"
        width="190"
        height="41"
        align="right"
        alt="WN home page"
      ></a>
    </p>

    <strong>Version 2.0.0</strong>

    <br>

    <!-- pnuts --> <a href="index.html">[Up]</a> <a href="../index.html">[Top]</a>

    <br clear="right">

    <hr size="4">

    <h2 align="center"><em>WN</em> Fill-Out Form Example</h2>
    <hr size="4">

    <p>
      This is a fill-out form example, with multiple text entry fields and
      checkboxes.  It was shamelessly stolen from <a
      href="http://hoohoo.ncsa.uiuc.edu/">NCSA</a>, except I added a text-area
      box.
    </p>


    <hr>

    <h3><a name="form">Godzilla's Pizza -- Internet Delivery Service</a></h3>

    <form method="post" action="doform.cgi">
      <p>
        Type in your street address: <input name="address">
      </p>

      <p>
        Type in your phone number: <input name="phone">
      </p>

      <p>
1      Which toppings would you like?
      </p>

      <ol>
        <li><input type="checkbox" name="toppings" value="pepperoni">
        Pepperoni.</li>

        <li><input type="checkbox" name="toppings" value="sausage">
        Sausage.</li>

        <li><input type="checkbox" name="toppings" value="anchovies">
        Anchovies.</li>
      </ol>

      <p>
        Here is a text area for your special instructions or comments on our
        pizzas.
      </p>

      <textarea name="comments" rows="4" cols="40">
      </textarea>

      <p>
        To order your pizza, press this button: <input type="submit"
        value="Order Pizza">.
      </p>
    </form>


    <hr size="4">

    <address>
      <em>WN</em> version 2.0.0
      <br>
      Copyright &copy; 1998 <a href="mailto:john@math.nwu.edu">John Franks
      &lt;john@math.nwu.edu&gt;</a>
      <br>
      licensed under the <a href="http://www.gnu.org/copyleft/gpl.html">GNU
      General Public License</a>
      <br>
      last-modified: Sun, 10 May 1998 18:07:18 GMT
    </address>

    <!-- pnuts --><a href="index.html">[Up]</a> <a href="../index.html">[Top]</a>
  </body>
</html>