{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Create Zoom Meeting" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Create New Zoom Meeting" %}

{% trans "Back to Meetings" %}
{% if form.non_field_errors %} {% endif %}
{% csrf_token %}
{{ form.topic|add_class:"w-full px-4 py-3 border border-gray-200 rounded-xl text-sm focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }} {% if form.topic.errors %}
{{ form.topic.errors.0 }}
{% endif %}
{{ form.start_time|add_class:"w-full px-4 py-3 border border-gray-200 rounded-xl text-sm focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }} {% if form.start_time.errors %}
{{ form.start_time.errors.0 }}
{% endif %}
{{ form.duration|add_class:"w-full px-4 py-3 border border-gray-200 rounded-xl text-sm focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }} {% if form.duration.errors %}
{{ form.duration.errors.0 }}
{% endif %}
{% trans "Cancel" %}
{% endblock %}