mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
test, CGI: added a simple form to test CGI.
This commit is contained in:
parent
f0119e1944
commit
1b0bad8cbc
16
test/cgi/form.html
Normal file
16
test/cgi/form.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user