1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00
elinks/test/cgi/form.html
2007-06-17 19:42:54 +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>