mirror of https://github.com/zulip/zulip.git
16 lines
582 B
HTML
16 lines
582 B
HTML
{% extends "zerver/portico_error_pages/portico_error_page.html" %}
|
|
|
|
{% block title %}
|
|
<title>{{ _("Confirmation link expired or deactivated") }} | Zulip</title>
|
|
{% endblock %}
|
|
|
|
{% 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>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|