2020-07-18 16:40:51 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
|
|
{% block body %}
|
2020-07-19 16:51:54 +00:00
|
|
|
<div class="container">
|
|
|
|
|
<form method="POST" action="">
|
|
|
|
|
{{ form.hidden_tag() }}
|
|
|
|
|
<div class="inputs">
|
|
|
|
|
{{ form.url(placeholder="Enter the URL here", class="url") }}
|
|
|
|
|
{{ form.submit(class="submit") }}
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
2020-07-18 16:40:51 +00:00
|
|
|
{% endblock %}
|