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 does not exist") }} | 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">
|
2022-10-10 10:24:04 +02:00
|
|
|
<div class="container row-fluid">
|
2023-01-25 00:08:42 +01:00
|
|
|
<img src="{{ static('images/errors/400art.svg') }}" 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. We couldn't find your confirmation link in the system.") }}</h1>
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
2020-09-16 19:30:05 +02:00
|
|
|
Anyway, shoot us a line at {{ support_email_html_tag }} and we'll get this resolved shortly.
|
2020-09-12 16:57:55 +02:00
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
2018-02-27 21:52:03 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-07-22 00:25:41 +02:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|