shortener/shortener/templates/result.html

23 lines
599 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Result</h1>
<p class="status-{{ status }}">Status: {{ status }}</p>
{% if message %}
<p>{{ message }}</p>
{% endif %}
{% if url %}
<p>
Your short URL is: <a href="{{ url }}">{{ url }}</a>.<br>
Please wait a couple of minutes for DNS to propagate before testing and
sharing this URL.
</p>
{% endif %}
<p>
<a onclick="window.history.back(); return false;"
href="{{ url_for("home") }}">
Go back
</a>
</p>
{% endblock %}