I am trying to create a form using Simple Form. For some reason, I can't change the class of the form. I am using the following code:
<%= simple_form_for @presentation, url: send_out_emails_path,
defaults: {input_html: { :class => 'form-horizontal' } } do |f| %>
<!-- Form content here !-->
<% end %>
It is generating this html:
<form action="/sendout" class="simple_form edit_presentation" id="edit_presentation_152" method="post" novalidate="novalidate">
<!-- Form content here !-->
</form>
Why is the class not being changed?