I am trying to make my input field bigger on my wtform field. I found this post that shows how to use form-control,
{{ form.email(class_="form-control") }} Add a css class to a field in wtform
And this bootstrap one on how to use input-lg,
input class="form-control input-lg" id="inputlg" type="text" http://www.w3schools.com/bootstrap/bootstrap_forms_sizing.asp
But they are not working together in my code. There is no error it just doesn't work.
<form id="signinform" class="form form-horizontal" method="post"
role="form" style="font-size:24px;”>
{{ form.hidden_tag() }}
{{ wtf.form_field(form.last_name, class_="form-control input-lg") }}
</form>
There is a few more form lines but they don't need to be included.
How can I make this work? What am I doing wrong? (I have bootstrap and everything already imported)
Thanks