small-projects/tiktok-clone/templates/index.html

25 lines
701 B
HTML
Raw Normal View History

2025-04-10 14:51:39 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Short Video Upload</title>
</head>
<body>
<h1>Upload a Short Video</h1>
<!-- Form for uploading video; enctype is necessary to allow file uploads -->
<form action="{{ url_for('upload_video') }}" method="post" enctype="multipart/form-data">
<input type="file" name="video" accept="video/*" required>
<input type="submit" value="Upload">
</form>
<!-- Display any flash messages -->
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul>
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
</body>
</html>