diff options
author | Marvin Borner | 2019-04-02 20:21:59 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-02 20:21:59 +0200 |
commit | 19c341e4642149b066667f042656a4f045293efd (patch) | |
tree | 438a3411973f35edac410aa01637b8d27ebfc12e /src/main/resources | |
parent | ab5c6108c9c0404fb0b971e8145078ac8ce6a2ad (diff) |
Added basic upload functionality
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/upload.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/resources/upload.html b/src/main/resources/upload.html new file mode 100644 index 0000000..550f841 --- /dev/null +++ b/src/main/resources/upload.html @@ -0,0 +1,16 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" + name="viewport"> + <meta content="ie=edge" http-equiv="X-UA-Compatible"> + <title>Upload Testing</title> +</head> +<body> +<form action="/upload?dir=test" enctype="multipart/form-data" method="post"> + <input multiple name="files" type="file"> + <button>Submit</button> +</form> +</body> +</html> |