12 lines
273 B
HTML
12 lines
273 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Folder upload test</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<form action="/upload" method="post" enctype="multipart/form-data">
|
||
|
|
<input type="file" name="file1" webkitdirectory>
|
||
|
|
<input type="submit">
|
||
|
|
</form>
|
||
|
|
</body>
|
||
|
|
</html>
|