mirror of https://github.com/zulip/zulip.git
17 lines
660 B
HTML
17 lines
660 B
HTML
|
{% extends "zephyr/content_base.html" %}
|
||
|
|
||
|
{% block more_content %}
|
||
|
|
||
|
<div class="pitch">
|
||
|
<hr/>
|
||
|
{% if confirmed %}
|
||
|
<p>You're confirmed. We're not exactly sure what we confirmed you for, but whatever it is you're totally good.</p>
|
||
|
{% else %}
|
||
|
<p class="lead">Whoops, something's not right. We couldn't find your confirmation ID!<p>
|
||
|
<p>Make sure you copied the link correctly in to your browser. If you're still encountering this page, its probably our fault. We're sorry.<p>
|
||
|
<p>Anyway, shoot us a line at <a href="mailto:support@humbughq.com">support@humbughq.com</a> and we'll get this resolved shortly.</p>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|