More search and replace for BS changes

Thought I'd got them all. Clearly not!
This commit is contained in:
2020-10-17 18:11:42 +01:00
parent 848e8c8ccd
commit 4bb1c0a2a4
20 changed files with 55 additions and 67 deletions

View File

@@ -11,12 +11,12 @@
<p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}</p>
<div class="col-sm-8 col-sm-offset-2 well">
<form action="" method="POST" role="form" class="form-horizontal">{% csrf_token %}
<form action="" method="POST" role="form" class="">{% csrf_token %}
{% if form.errors %}
{% include 'form_errors.html' %}
{% endif %}
<div class="form-group">
<label for="{{form.email.id_for_label}}" class="col-sm-2 control-label">{{form.email.label}}</label>
<label for="{{form.email.id_for_label}}" class="col-sm-2 col-form-label">{{form.email.label}}</label>
<div class="col-sm-10">
{% render_field form.email type="email" class+="form-control" %}
</div>