FIxed the url error messages and changed some styling

This commit is contained in:
xemeds
2020-08-07 16:09:19 +03:00
parent e1f0d530cc
commit 53526060c9
2 changed files with 10 additions and 12 deletions
+5 -5
View File
@@ -22,12 +22,12 @@
{{ form.url(placeholder="Enter the URL here", class="url") }}
{{ form.submit(class="button") }}
</div>
{% if form.url.errors %}
{% for error in form.url.errors %}
<p class="url-error-message">{{ error }}</p>
{% endfor %}
{% endif %}
</form>
{% if form.url.errors %}
{% for error in form.url.errors %}
<p class="url-error-message">{{ error }}</p>
{% endfor %}
{% endif %}
</div>
{% if not form.url.errors %}