1
0
mirror of https://github.com/tomasvarg/testground-web-devel.git synced 2026-03-01 08:28:49 +00:00
testground-web-devel/node/upload-serve-files-koa_v1/public/index.html

21 lines
411 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Upload</title>
<style>
body {
padding: 50px;
font: 14px Helvetica, Arial;
}
</style>
</head>
<body>
<h1>File Upload</h1>
<p>Try uploading multiple files at a time.</p>
<form action="/" method="post" enctype="multipart/form-data">
<input type="file" name="file" multiple>
<input type="submit" value="Upload">
</form>
</body>
</html>