healthchecks/templates/front/verify_email_success.html

21 lines
513 B
HTML

{% extends "base.html" %}
{% load hc_extras %}
{% block content %}
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<div class="hc-dialog">
<h1>Email Address Verified!</h1>
<div class="dialog-body">
<p>
Success! You've verified this email
address, and it will now receive
{{ site_name }} notifications.
</p>
</div>
</div>
</div>
</div>
{% endblock %}