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
Heorhii Mykhailenko 4d9aecf18e Impoved style
2023-06-15 21:04:28 +03:00

19 lines
No EOL
407 B
HTML
Executable file

<!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>
</html>