19 lines
482 B
Plaintext
19 lines
482 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Multer Upload</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<form action="/upload" method="POST" enctype="multipart/form-data">
|
||
|
<input type="file" name="profileImage">
|
||
|
<br><br>
|
||
|
<br><br>
|
||
|
<button type="submit">Upload</button>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|