14 lines
374 B
Text
14 lines
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>
|