2020-07-20 17:51:52 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
|
<body>
|
|
|
|
|
<div class="headers">
|
|
|
|
|
<a class="title" href="{{ url_for('index') }}">tiny0</a>
|
|
|
|
|
<h1 class="desc">Custom URL Shortener</h1>
|
|
|
|
|
</div>
|
2020-07-23 18:26:18 +00:00
|
|
|
|
2020-08-07 17:28:35 +03:00
|
|
|
<ul class="error-message">
|
|
|
|
|
<li><h1>{{ error_code }}</h1></li>
|
|
|
|
|
<li><h1>{{ error_message }}</h1></li>
|
|
|
|
|
</ul>
|
2020-07-20 17:51:52 +00:00
|
|
|
</body>
|
|
|
|
|
{% endblock %}
|