simple_form & bootstrap validations not working
问题 I want to setup a 'Create Account' page. The gems I'm using are: rails (3.2.3) simple_form (2.0.1) omniauth-identity twitter-bootstrap-rails (2.0.6) mongoid (2.2.3) The form looks as follows: = simple_form_for @identity, :url => '/auth/identity/register', :html => { :class => 'form-horizontal' } do |f| = f.input :name, :input_html => {:name => 'name'} = f.input :email, :input_html => {:name => 'email'} = f.input :password, :as => 'password', :input_html => {:name => 'password'} = f.input