Clean accounts_send_confirm.html to use 4 space indents.

This commit is contained in:
adnrs96
2017-02-24 21:12:13 +05:30
committed by Tim Abbott
parent e1d73ea36f
commit f37d354cc5

View File

@@ -3,20 +3,20 @@
{% block portico_content %}
<div class="app portico-page">
<div class="app-main portico-page-container">
<h2>{{ _("Thanks for signing up!") }}</h2>
<p class="lead">{{ _("Check your email so we can get started.") }}</p>
{% if development_environment %}
<div class="alert alert-info" style="display:inline-block;">{{ _("In the Zulip development environment, outgoing emails are printed to the run-dev.py console") }}</div>
{% endif %}
<div class="app-main portico-page-container">
<h2>{{ _("Thanks for signing up!") }}</h2>
<p class="lead">{{ _("Check your email so we can get started.") }}</p>
{% if development_environment %}
<div class="alert alert-info" style="display:inline-block;">{{ _("In the Zulip development environment, outgoing emails are printed to the run-dev.py console") }}</div>
{% endif %}
<p>{% trans %}Still no email? We can <a href="#" id="resend_email_link">resend it</a>.{% endtrans %}<br/>
<small>({{ _("Just in case, take a look at your Spam folder.") }})</small></p>
<form id="resend_confirm" action="/accounts/home/" method="post" style="position: absolute;">
{{ csrf_input }}
<input type="hidden" class="email" id="email" value="{{ email }}" name="email"/>&nbsp;
</form>
</div>
<p>{% trans %}Still no email? We can <a href="#" id="resend_email_link">resend it</a>.{% endtrans %}<br/>
<small>({{ _("Just in case, take a look at your Spam folder.") }})</small></p>
<form id="resend_confirm" action="/accounts/home/" method="post" style="position: absolute;">
{{ csrf_input }}
<input type="hidden" class="email" id="email" value="{{ email }}" name="email"/>&nbsp;
</form>
</div>
</div>
{% endblock %}