{% extends "base.html" %} {% load staticfiles %} {% load i18n %} {% block title %}Contact Us{% endblock %} {% block content %}

Contact Us

Please fill the form with your question/proposition and we will process it asap.
Alternatively you can just email us.
Please note: all fields are required.

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% if form.errors %}
There are errors in your submission. Please correct them and try again.
{% endif %}

Contact information

{{ form.name }}
{{ form.email }}
{{ form.subject }}
{{ form.text }}
Please enter symbols from the image: {% if form.captcha.errors %}
Please enter correct symbols from the image.
{% endif %}
{{ form.captcha }}
{% include 'mainsite/testimonial_widget.html' %} {% include 'mainsite/guarantee_widget.html' %}
{% endblock %} {% block javascript %} {% endblock %}