added test form html in www

This commit is contained in:
hugogogo
2022-08-08 18:22:54 +02:00
parent e1a68bc3e4
commit ae9a9b37f1
2 changed files with 26 additions and 0 deletions

13
www/form_get.html Normal file
View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<form method="get">
<input type="submit" value="submit">
</form>
</body>
</html>

13
www/form_post.html Normal file
View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<form method="post">
<input type="submit" value="submit">
</form>
</body>
</html>