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

12 lines
219 B
HTML

{% 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 %}