2017-07-22 00:25:41 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
|
|
|
|
{% block portico_content %}
|
2018-02-27 21:52:03 +01:00
|
|
|
<div class="error_page">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row-fluid">
|
|
|
|
<img class="hourglass-img" src="/static/images/timeout_hourglass.png" alt=""/>
|
|
|
|
<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>
|
|
|
|
<p>{{ _("Please contact your organization administrator for a new one.") }}</p>
|
2018-02-27 21:52:03 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-07-22 00:25:41 +02:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|