Skip to content

Commit baa3b29

Browse files
fix: clean up formatting of login.html template
1 parent 3d7b267 commit baa3b29

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

ietf/templates/registration/login.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ <h1>Sign in</h1>
99
<form method="post">
1010
{% csrf_token %}
1111
{% bootstrap_form form %}
12-
{% bootstrap_button button_type="submit" content="Sign in" %}
13-
<a class="btn btn-secondary"
14-
href="{% url 'ietf.ietfauth.views.password_reset' %}">Forgot your password?</a>
15-
<br>
16-
Don't have an account?
17-
<a href="{% url 'ietf.ietfauth.views.create_account' %}">Create an account</a>.
12+
<div class="mt-4 mb-3">
13+
{% bootstrap_button "Sign in" button_type="submit" %}
14+
{% url 'ietf.ietfauth.views.password_reset' as reset_url %}
15+
{% bootstrap_button "Forgot your password?" button_type="link" button_class="btn-secondary" href=reset_url %}
16+
</div>
17+
Don't have an account? <a href="{% url 'ietf.ietfauth.views.create_account' %}">Create an account</a>.
1818
</form>
1919
{% endblock %}

0 commit comments

Comments
 (0)