2022-05-08 14:02:19 +00:00
|
|
|
{% extends "base.html.j2" %}
|
|
|
|
{% block content %}
|
|
|
|
<div id="box">
|
|
|
|
<div id="avatars">
|
|
|
|
<img src="{{ url_for('static', filename='img/deadlink.png') }}"
|
2023-11-07 00:26:12 +00:00
|
|
|
alt="{{ _("Link is dead") }}"
|
2022-05-08 14:02:19 +00:00
|
|
|
height="179"
|
2023-11-07 00:26:12 +00:00
|
|
|
width="173" />
|
2022-05-08 14:02:19 +00:00
|
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<span>{{ error }}</span>
|
|
|
|
</div>
|
|
|
|
<div id="buttons">
|
2023-11-07 00:26:12 +00:00
|
|
|
<a href="{{ url_for("index") }}">
|
2022-05-08 14:02:19 +00:00
|
|
|
<i class="fa fa-arrow-left"></i>
|
2023-11-07 00:26:12 +00:00
|
|
|
{{ _("Back to the beginning") }}
|
2022-05-08 14:02:19 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|