Added URL validation form

This commit is contained in:
xemeds
2020-07-18 16:40:51 +00:00
parent c783e7792a
commit d97b3266c8
5 changed files with 68 additions and 8 deletions
+11
View File
@@ -0,0 +1,11 @@
{% extends "layout.html" %}
{% block body %}
<div>
<form method="POST" action="">
{{ form.hidden_tag() }}
{{ form.url(placeholder="Enter the URL here") }}
{{ form.submit }}
</form>
</div>
{% endblock %}