This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2023_Video/templates/index.html

18 lines
414 B
HTML
Raw Normal View History

2023-06-06 15:18:12 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Video upload</title>
</head>
<body>
{% if error %}
<p>{{ error | safe }}</p>
{% endif %}
<form method="POST" enctype="multipart/form-data">
<label for="video">Video: </label><br>
<input type="file" id="video" name="video" required><br>
<button id="submit" type="submit">Submit</button>
</form>
</body>
</p>
</html>