File: form.html

package info (click to toggle)
hippotat 1.2.3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 684 kB
  • sloc: sh: 423; makefile: 130; perl: 84; python: 79; ansic: 34
file content (16 lines) | stat: -rw-r--r-- 440 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<body>
  <h1>no data</h1>
  <form method="POST" action="http://localhost:8099/"
	enctype="multipart/form-data">
    <textarea cols=20 rows=4 name="m"></textarea>
    <input type="submit">
  </form>
  <h2>with data</h1>
  <form method="POST" action="http://localhost:8099/"
	enctype="multipart/form-data">
    <textarea cols=20 rows=4 name="m"></textarea>
    <p>
    <input type="file" name="d">
    <input type="submit">
  </form>
</body>