Files
flask_url_shortener/tiny0/templates/index.html
T

10 lines
241 B
HTML
Raw Normal View History

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