2024-06-05 06:51:07 +02:00
|
|
|
{% extends "zerver/portico_error_pages/portico_error_page.html" %}
|
2017-07-22 00:25:41 +02:00
|
|
|
|
2022-09-06 12:04:03 +02:00
|
|
|
{% block title %}
|
|
|
|
<title>{{ _("Confirmation link expired or deactivated") }} | Zulip</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
2024-05-31 07:21:14 +02:00
|
|
|
{% block error_page_content %}
|
|
|
|
<img class="hourglass-img" src="{{ static('images/errors/timeout_hourglass.png') }}" alt=""/>
|
|
|
|
<div class="errorbox">
|
|
|
|
<div class="errorcontent">
|
|
|
|
<h1 class="lead">{{ _("Whoops. The confirmation link has expired or been deactivated.") }}</h1>
|
|
|
|
<p>{{ _("Please contact your organization administrator for a new link.") }}</p>
|
2018-02-27 21:52:03 +01:00
|
|
|
</div>
|
2017-07-22 00:25:41 +02:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|