{% extends "base.html" %} {% load static i18n widget_tweaks %} {% block title %}{% trans "Schedule Remote Meeting" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Create Remote Interview" %}

{% trans "Back to Meetings" %}

{% trans "Remote Meeting Details" %}

{% if form.non_field_errors %} {% endif %}
{% csrf_token %}
{{ form.application|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 bg-white" }} {% if form.application.help_text %}

{{ form.application.help_text }}

{% endif %} {% if form.application.errors %}
{{ form.application.errors.0 }}
{% endif %}
{{ form.job|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 bg-white" }} {% if form.job.help_text %}

{{ form.job.help_text }}

{% endif %} {% if form.job.errors %}
{{ form.job.errors.0 }}
{% endif %}
{{ 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"|attr:"placeholder:form.topic.label" }} {% if form.topic.help_text %}

{{ form.topic.help_text }}

{% endif %} {% 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.help_text %}

{{ form.start_time.help_text }}

{% endif %} {% 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"|attr:"placeholder:30" }} {% if form.duration.help_text %}

{{ form.duration.help_text }}

{% endif %} {% if form.duration.errors %}
{{ form.duration.errors.0 }}
{% endif %}

{% trans "Remote Configuration" %}

{{ form.host_email|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.host_email.help_text %}

{{ form.host_email.help_text }}

{% endif %} {% if form.host_email.errors %}
{{ form.host_email.errors.0 }}
{% endif %}
{{ form.password|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.password.help_text %}

{{ form.password.help_text }}

{% endif %} {% if form.password.errors %}
{{ form.password.errors.0 }}
{% endif %}
{{ form.participant_video|add_class:"w-5 h-5 border-gray-300 rounded focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }}
{% if form.participant_video.help_text %}

{{ form.participant_video.help_text }}

{% endif %} {% if form.participant_video.errors %}
{{ form.participant_video.errors.0 }}
{% endif %}
{{ form.status|attr:"type:hidden" }}
{% trans "Cancel" %}
{% endblock %}