Skip to content

Commit

Permalink
Create uploadfiles.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Qing9935 committed May 22, 2024
1 parent 39dc1ad commit eb38aa2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions uploadfiles.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>File Upload Form</title>
</head>
<body>
<h2>Upload a File</h2>
<form action="/upload" method="post" enctype="multipart/form-data">
<label for="fileInput">Choose a file:</label>
<input type="file" id="fileInput" name="file" placeholder="Choose a file" />
<button type="submit">Upload</button>
</form>
</body>
</html>

0 comments on commit eb38aa2

Please sign in to comment.