13 lines
287 B
HTML
13 lines
287 B
HTML
|
|
{% 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>
|
||
|
|
<div class="error-message">
|
||
|
|
<h1>{{ error_message }}</h1>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
{% endblock %}
|