Skip to content

Commit

Permalink
sweep: Create templates/upload.html
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Aug 8, 2023
1 parent 2cc7192 commit eb4ed4b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions templates/upload.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>Upload Video</title>
</head>
<body>
<h1>Upload Video</h1>
<form id="form" method="post" enctype="multipart/form-data">
<label for="file">Select a video file:</label>
<input type="file" id="file" name="file" accept="video/*" required>
<input type="submit" value="Upload">
</form>
<div id="results"></div>
<script src="/static/script.js"></script>
</body>
</html>

0 comments on commit eb4ed4b

Please sign in to comment.