Refactor to use the new library structure convention.
This commit is contained in:
19
example/SimpleWebServer/webroot/post/index.html
Normal file
19
example/SimpleWebServer/webroot/post/index.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>POST example</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1> POST example </h1>
|
||||
<form action="index.html" method="POST">
|
||||
<input type="text" name="name" value="a simple name"/> <br/>
|
||||
<input type="text" name="text" value="a tiny text"/>
|
||||
<input type="submit" value="POST"/>
|
||||
</form>
|
||||
|
||||
<form action="index.html" method="GET">
|
||||
<input type="text" name="name" value="a simple name"/> <br/>
|
||||
<input type="text" name="text" value="a tiny text"/>
|
||||
<input type="submit" value="GET"/>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user