1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-26 16:45:12 -04:00

test, CGI: added a simple form to test CGI.

This commit is contained in:
Witold Filipczyk 2007-06-15 14:39:24 +02:00 committed by Kalle Olavi Niemitalo
parent f0119e1944
commit 1b0bad8cbc

16
test/cgi/form.html Normal file
View File

@ -0,0 +1,16 @@
<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>