{% extends "layout.html" %} {% block body %}
{{ form.hidden_tag() }}
{{ form.url(placeholder="Enter the URL here", autofocus=true, class="url") }} {{ form.submit(class="button") }}
{% if form.url.errors %} {% for error in form.url.errors %}

{{ error }}

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