File size: 347 Bytes
6a7089a | 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">
<title>E2E Test - Upload</title>
</head>
<body>
<h1>Upload Test</h1>
<form id="upload-form">
<input type="file" id="single-file" name="file">
<input type="file" id="multi-file" name="files" multiple>
<button type="submit">Upload</button>
</form>
</body>
</html>
|