2017-07-22 00:25:41 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
|
2022-09-06 12:04:03 +02:00
|
|
|
{% block title %}
|
|
|
|
<title>{{ _("Confirmation link expired or deactivated") }} | Zulip</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-07-22 00:25:41 +02:00
|
|
|
{% block portico_content %}
|
2018-02-27 21:52:03 +01:00
|
|
|
<div class="error_page">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row-fluid">
|
2023-01-25 00:08:42 +01:00
|
|
|
<img class="hourglass-img" src="{{ static('images/errors/timeout_hourglass.png') }}" alt=""/>
|
2018-02-27 21:52:03 +01:00
|
|
|
<div class="errorbox">
|
|
|
|
<div class="errorcontent">
|
2020-09-12 16:57:55 +02:00
|
|
|
<h1 class="lead">{{ _("Whoops. The confirmation link has expired or been deactivated.") }}</h1>
|
2021-02-16 16:41:37 +01:00
|
|
|
<p>{{ _("Please contact your organization administrator for a new link.") }}</p>
|
2018-02-27 21:52:03 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-07-22 00:25:41 +02:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|