{% extends 'base.html' %} {% block title %} Contact Us {% endblock %} {% block content %}

Contact Us

{% csrf_token %}
{{ form.email_of_sender }} {% if form.email_of_sender.errors %}
{{ form.email_of_sender.errors.0 }}
{% endif %}
{{ form.content }} {% if form.content.errors %}
{{ form.content.errors.0 }}
{% endif %}
{% if toast_message %} {% endif %}
{% endblock %}