<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>ファイルアップロード</title>
</head>
<body>
<h1>ファイルをアップロード</h1>
<form id="upload-form" method="POST" enctype="multipart/form-data" action="/upload">
<input type="file" name="file" required />
<button type="submit">アップロード</button>
</form>
</body>
</html>