diff options
Diffstat (limited to 'examples/upload/priv')
-rw-r--r-- | examples/upload/priv/index.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/upload/priv/index.html b/examples/upload/priv/index.html new file mode 100644 index 0000000..031420d --- /dev/null +++ b/examples/upload/priv/index.html @@ -0,0 +1,13 @@ +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>Multipart upload example</title> + </head> + + <body> + <form method="post" enctype="multipart/form-data" action="/upload"> + <input type="file" name="inputfile"/> + <input type="submit"/> + </form> + </body> +</html> |