15 lines
275 B
HTML
15 lines
275 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Upload</title>
|
|
</head>
|
|
<body>
|
|
<h1>Upload File</h1>
|
|
|
|
<form action="/api/files/upload" method="post" enctype="multipart/form-data">
|
|
<input type="file" name="file" />
|
|
<button type="submit">Upload</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html> |