1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-02 02:15:28 +00:00
elinks/test/cgi/form.html
Witold Filipczyk 9470cbbc1e test, CGI: added a simple form to test CGI.
[ From commit 1b0bad8cbc in ELinks
  0.12.GIT.  --KON ]
2007-07-02 22:50:33 +03:00

17 lines
363 B
HTML

<html>
<head>
<title>CGI test</title>
</head>
<body>
<form name="a" method="GET" action="print-vars.sh">
<input name="b" type="text" />
<input name="c" type="submit" value="Test GET" />
</form>
<hr />
<form name="a1" method="POST" action="print-post.sh">
<input name="b1" type="text" />
<input name="c1" type="submit" value="Test POST" />
</form>
</body>
</html>