aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/upload.html
blob: 16c8a945d6247cb92b44c322f0dbb5e82222bbd8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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="/api/upload?dir=test" enctype="multipart/form-data" method="post">
    <input multiple name="files" type="file">
    <button>Submit</button>
</form>
</body>
</html>