quad-j/views/upload.ejs
2020-10-01 23:10:41 +03:00

14 lines
No EOL
374 B
Text

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upload</title>
</head>
<body>
<form action='/api/upload' method="POST" enctype="multipart/form-data">
<input type="file" name="file"/>
<input type='submit' value='Upload!'/>
</form>
</body>
</html>