healthchecks_healthchecks/templates/accounts/change_email_instructions.html
Pēteris Caune b859a71920
Rename "sign in" to "log in"
I like "sign in" better, but users from time
to time confuse "sign in" and "sign up" forms. To reduce
confusion potential, I'm renaming "sign in" to "log in".
2024-08-12 15:09:58 +03:00

19 lines
459 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<div class="hc-dialog">
<h1>One Last Step&hellip;</h1>
<br />
<p>
We've sent a log in link to <strong>{{ email }}</strong>.
To finalize the email address change, please log
in using that link.
</p>
</div>
</div>
</div>
{% endblock %}