File: simple.html

package info (click to toggle)
golang-github-jeremija-gosubmit 0.2.8-1~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 176 kB
  • sloc: makefile: 7
file content (15 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<body>
<form method="get" name="simple-get">
  <input type="text" name="firstName" required>
  <input type="submit">
</form>

<form method="post" name="simple-post" action="/mytest">
  <input type="text" name="firstName" required>
  <input type="submit">
</form>

</body>
</html>