mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-23 07:57:39 +00:00
b859a71920
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".
19 lines
459 B
HTML
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…</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 %}
|