{% extends "layout.html" %} {% block body %}

< Report >

{{ form.hidden_tag() }} {{ form.url(placeholder="Enter the short URL", autofocus=true, class="feedback-input") }} {{ form.message(placeholder="Enter a short message explaining the reason of your report", class="feedback-input") }} {{ form.submit(class="button") }} {% if form.errors %}
{% for error in form.url.errors %}

{{ error }}

{% endfor %} {% for error in form.message.errors %}

{{ error }}

{% endfor %}
{% endif %}
{% endblock %}