Files
flask_url_shortener/tiny0/templates/index.html
T
2020-07-19 16:51:54 +00:00

14 lines
302 B
HTML

{% extends "layout.html" %}
{% block body %}
<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>
{% endblock %}