<!DOCTYPE html>
<html>
<head>
<meta charset=UTF-8>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Image Uploader</title>
</head>
<body>
<form method="post" action="/upload" enctype="multipart/form-data">
<input name="image" type="file" accept="image/*"/>
<button type="submit">Upload The Image File</button>
</form>
</body>