shortener/shortener/templates/welcome.html

21 lines
602 B
HTML
Raw Normal View History

2021-05-29 15:57:49 +02:00
{% extends "base.html" %}
{% block content %}
2021-05-29 16:34:01 +02:00
<h1>Shorten urls</h1>
2021-05-29 15:57:49 +02:00
<p>Welcome to the URL shortener.</p>
<form action="{{ url_for("shorten_url") }}" method="post">
2021-05-29 16:34:01 +02:00
<p>
<label for="short_code">Short code</label>
<input type="text" name="short_code" id="short_code">
</p>
<p>
<label for="url">Url to shorten</label>
<input type="text" name="url" id="url">
</p>
<p>
<button type="submit">Submit</button>
<button type="reset">Reset</button>
</p>
2021-05-29 15:57:49 +02:00
</form>
{% endblock %}