2024-05-31 07:21:14 +02:00
|
|
|
{% extends "zerver/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 does not exist") }} | Zulip</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
2024-05-31 07:21:14 +02:00
|
|
|
{% block error_page_content %}
|
|
|
|
<img src="{{ static('images/errors/400art.svg') }}" alt=""/>
|
|
|
|
<div class="errorbox">
|
|
|
|
<div class="errorcontent">
|
|
|
|
<h1 class="lead">{{ _("Whoops. We couldn't find your confirmation link in the system.") }}</h1>
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
|
|
|
Anyway, shoot us a line at {{ support_email_html_tag }} and we'll get this resolved shortly.
|
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
2018-02-27 21:52:03 +01:00
|
|
|
</div>
|
2017-07-22 00:25:41 +02:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|