2020-07-18 16:40:51 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
|
|
{% block body %}
|
2020-08-20 09:43:52 +03:00
|
|
|
<form method="POST" action="" class="url-form">
|
|
|
|
|
{{ form.hidden_tag() }}
|
|
|
|
|
<ul class='input-list'>
|
2020-08-19 16:31:22 +03:00
|
|
|
{% if form.url.errors %}
|
|
|
|
|
{% for error in form.url.errors %}
|
|
|
|
|
<p class="url-error-message">{{ error }}</p>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% endif %}
|
2020-08-20 09:43:52 +03:00
|
|
|
<li>{{ form.url(placeholder="Enter the URL here", autofocus=true, class="url") }}</li>
|
|
|
|
|
<li>{{ form.submit(class="button") }}</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</form>
|
2020-07-18 16:40:51 +00:00
|
|
|
{% endblock %}
|