Skip to content

Commit

Permalink
removed superfluous classes
Browse files Browse the repository at this point in the history
  • Loading branch information
MalcolmVonMoJ committed Nov 27, 2020
1 parent cbd5b25 commit e22f35e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cla_public/templates/macros/subform.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<li>{{ _('When a CLA operator calls, the call will come from an anonymous number.') }}</li>
<li>{{ _('If you miss the call you’ll need to complete this form again.') }}</li>
</ul>
{{ Form.group(form.callback.contact_number, field_attrs={'class': 'm-large', 'autocomplete': 'tel', 'type': 'tel'}) }}
{{ Form.group(form.callback.contact_number, field_attrs={'class': '', 'autocomplete': 'tel', 'type': 'tel'}) }}
{{ time_picker(form.callback.time) }}
{% endcall %}
{% endmacro %}
Expand All @@ -41,9 +41,9 @@
<li>{{ _('When a CLA operator calls, the call will come from an anonymous number.') }}</li>
<li>{{ _('If your nominated person misses the call you’ll need to complete this form again.') }}</li>
</ul>
{{ Form.group(form.thirdparty.full_name, field_attrs={'class': 'm-large'}) }}
{{ Form.group(form.thirdparty.full_name, field_attrs={'class': ''}) }}
{{ Form.group(form.thirdparty.relationship, field_attrs={'class': ''}) }}
{{ Form.group(form.thirdparty.contact_number, field_attrs={'class': 'm-large', 'autocomplete': 'tel', 'type': 'tel'}) }}
{{ Form.group(form.thirdparty.contact_number, field_attrs={'class': '', 'autocomplete': 'tel', 'type': 'tel'}) }}
{{ time_picker(form.thirdparty.time) }}
{% endcall %}
{% endmacro %}
Expand Down

0 comments on commit e22f35e

Please sign in to comment.