mirror of https://github.com/zulip/zulip.git
24 lines
768 B
HTML
24 lines
768 B
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{% block title %}
|
|
<title>{{ _("Confirmation link does not exist") }} | Zulip</title>
|
|
{% endblock %}
|
|
|
|
{% block portico_content %}
|
|
<div class="error_page">
|
|
<div class="container row-fluid">
|
|
<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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|