zulip/templates/confirmation/link_does_not_exist.html

20 lines
642 B
HTML

{% extends "zerver/portico.html" %}
{% block portico_content %}
<div class="error_page">
<div class="container">
<img src="/static/images/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 %}