Handle POST requests

This commit is contained in:
2020-03-18 17:13:05 -07:00
parent 6684075cc5
commit 161a042123
3 changed files with 49 additions and 7 deletions

View File

@@ -1,9 +1,13 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Hello, World!</title>
</head>
<body>
Hello, Warp!
<form action="name" method="post">
<input name="name" type="text">
<input type="submit" value="Set Name">
</form>
</body>
</html>