Files
LAB5/21/views/index.html
MishaBagger 0956275ec4 MACHIN
2023-11-08 13:41:29 +03:00

15 lines
361 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Image Uploader</title>
</head>
<body>
<form method="POST" action="/upload" enctype="multipart/form-data">
<input type="file" name="uploadImg" />
<button type="submit">Upload</button>
</form>
<br />
<button onclick="window.location.href='/images'">Show Images</button>
</body>
</html>