{% extends "layout.html" %} {% block body %}

< URL Shortener >

{{ form.hidden_tag() }} {{ form.url(placeholder="Enter the URL here", autofocus=true, class="feedback-input") }} {{ form.token(placeholder="Enter the token (optional)", class="feedback-input") }}
What's a token?

tiny0.cc/token

Token must be between 6 and 16 characters long

It can only contain letters, numbers, underscores(_) and dashes(-)

{{ form.submit(class="button") }} {% if form.errors %}
{% for error in form.url.errors %}

{{ error }}

{% endfor %} {% for error in form.token.errors %}

{{ error }}

{% endfor %}
{% endif %}
{% endblock %}