{% extends "base.html" %} {% load staticfiles %} {% load i18n %} {% block title %}Get Free Estimate{% endblock %} {% block content %}

Get Free Estimate

Please submit your problems here and you will get a free, non-obligatory cost estimate from us shortly.
Alternatively you can submit your problem via email.
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 }}

Problem details

{{ form.deadline }} Please enter deadline date in the mm/dd/yyyy format.
You need: {% if form.solution_type.errors %}
Please select solution type.
{% endif %} {% for radio in form.solution_type %}
{% endfor %}
{{ form.comments }}

Attach files:

You can attach files with your problem. Only images are allowed.
If you would like to attach files other than images please submit your problem via email.

{% if form.attachment1.errors or form.attachment2.errors or form.attachment3.errors %}
You have uploaded a non image file or you image is corrupted. Please try again.
{% endif %}
{{ form.attachment1 }}
{{ form.attachment2 }}
{{ form.attachment3 }}
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 %}