mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
17 lines
363 B
HTML
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>
|