diff --git a/bootstrapform/fixtures/basic.html b/bootstrapform/fixtures/basic.html
index d316ca5..81caa6f 100644
--- a/bootstrapform/fixtures/basic.html
+++ b/bootstrapform/fixtures/basic.html
@@ -54,7 +54,7 @@
{% else %}
{% if field.auto_id %}
-
+
{% endif %}
diff --git a/bootstrapform/tests.py b/bootstrapform/tests.py
index 5b90058..181c63b 100644
--- a/bootstrapform/tests.py
+++ b/bootstrapform/tests.py
@@ -28,7 +28,7 @@ class ExampleForm(forms.Form):
radio_choice = forms.ChoiceField(choices=CHOICES, widget=forms.RadioSelect)
multiple_choice = forms.MultipleChoiceField(choices=CHOICES)
multiple_checkbox = forms.MultipleChoiceField(choices=CHOICES, widget=forms.CheckboxSelectMultiple)
- file_fied = forms.FileField()
+ file_field = forms.FileField()
password_field = forms.CharField(widget=forms.PasswordInput)
textarea = forms.CharField(widget=forms.Textarea)
boolean_field = forms.BooleanField()
diff --git a/example/app/forms.py b/example/app/forms.py
index 6e4409d..72324d4 100644
--- a/example/app/forms.py
+++ b/example/app/forms.py
@@ -12,7 +12,7 @@ class ExampleForm(forms.Form):
radio_choice = forms.ChoiceField(choices=CHOICES, widget=forms.RadioSelect)
multiple_choice = forms.MultipleChoiceField(choices=CHOICES)
multiple_checkbox = forms.MultipleChoiceField(choices=CHOICES, widget=forms.CheckboxSelectMultiple)
- file_fied = forms.FileField()
+ file_field = forms.FileField()
password_field = forms.CharField(widget=forms.PasswordInput)
textarea = forms.CharField(widget=forms.Textarea)
boolean_field = forms.BooleanField()