Skip to content

Commit

Permalink
docs: 파일을 업로드할 수 있는 html 파일 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
impati committed Apr 27, 2024
1 parent cd4f5dc commit 4c121ab
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions product-api/src/main/resources/static/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>File Upload to AWS S3</title>
</head>
<body>
<h1>Upload File to S3</h1>
<form action="/files/upload" method="post" enctype="multipart/form-data">
<input type="file" name="file" required>
<button type="submit">Upload</button>
</form>
</body>
</html>

0 comments on commit 4c121ab

Please sign in to comment.