Files
flask_url_shortener/tiny0/templates/index.html
T

12 lines
219 B
HTML
Raw Normal View History

2020-07-18 16:40:51 +00:00
{% 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 %}