1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-16 00:00:07 +01:00
libwebsockets/minimal-examples/http-server/minimal-http-server-form-post/mount-origin/index.html

24 lines
604 B
HTML
Raw Normal View History

2018-03-29 08:33:20 +08:00
<html>
<head>
<meta charset="utf-8" http-equiv="Content-Language" content="en"/>
</head>
2018-03-29 08:33:20 +08:00
<body>
<img src="libwebsockets.org-logo.svg">
<img src="strict-csp.svg"><br>
2018-03-29 08:33:20 +08:00
Hello from the <b>minimal http POST example</b>.
<p>
This is a static page served from ./mount-origin/index.html.
<p>
When you POST the form below, you will see the values of the<br>
form parameters reported on the console log.
<p>
<form action="/form1" method="post">
Type some text:<br>
<input type="text" name="text1"><br>
<input type="submit" name="send" value="Submit">
</form>
</body>
</html>