mirror of
https://github.com/zulip/zulip.git
synced 2026-07-09 21:21:47 +08:00
This both is better copy and also cleared for translators, who in languages with gendered nouns don't need to guess what gender to use for "one" without context.
18 lines
626 B
HTML
18 lines
626 B
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{% block portico_content %}
|
|
<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">
|
|
<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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|