From c9ee1ad5aea794fd780133904d6b06a115148091 Mon Sep 17 00:00:00 2001 From: Kenneth Myhra Date: Sun, 2 Apr 2023 23:05:35 +0200 Subject: [PATCH] LibWeb: Add multipart/form-data demo to formdata.html --- Base/res/html/misc/formdata.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Base/res/html/misc/formdata.html b/Base/res/html/misc/formdata.html index bb1a3c25a3..0bdb3d773e 100644 --- a/Base/res/html/misc/formdata.html +++ b/Base/res/html/misc/formdata.html @@ -2,6 +2,14 @@ FormData + @@ -67,5 +84,9 @@ +
To test multipart/form-data start a simple echo server:
+
while true; do printf 'HTTP/1.1 200 OK\n' | nc -Nl 8000; done
+ +