File: form.html

package info (click to toggle)
hippotat 1.1.7
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 560 kB
  • sloc: sh: 399; makefile: 124; python: 79; perl: 52; 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>