Files
flask_url_shortener/tiny0/templates/index.html
T
2020-07-18 23:39:18 +00:00

10 lines
241 B
HTML

{% extends "layout.html" %}
{% block body %}
<form method="POST" action="" class="form">
{{ form.hidden_tag() }}
{{ form.url(placeholder="Enter the URL here", class="url") }}
{{ form.submit(class="submit") }}
</form>
{% endblock %}