{% load static %} {% load crispy_forms_tags %}

Upload Video

{% if user.is_authenticated %}
{% csrf_token %}
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors }}
{% endif %}
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors }}
{% endif %}
{{ form.video_file }} {% if form.video_file.errors %}
{{ form.video_file.errors }}
{% endif %} Supported formats: MP4, AVI, MOV, etc.
{{ form.thumbnail }} {% if form.thumbnail.errors %}
{{ form.thumbnail.errors }}
{% endif %} Recommended size: 1280x720 pixels
{{ form.category }} {% if form.category.errors %}
{{ form.category.errors }}
{% endif %}
{{ form.tags }} {% if form.tags.errors %}
{{ form.tags.errors }}
{% endif %} Separate tags with commas (e.g., tutorial, django, web development)
Cancel
{% else %}

Please Login First

You need to be logged in to upload videos.

Login Create Account
{% endif %}