I\'m using sorcery for authentication along with twitter bootstrap.
I\'d like to style my error messages on my signup form in the style of twitter\'s bootstrap by ch
From the link above, if you put the following inside class Application < Rails::Application of config/application.rb
class Application < Rails::Application
config/application.rb
config.action_view.field_error_proc = Proc.new { |html_tag, instance| "#{html_tag}".html_safe }
Your input tags will have a red marker around them whenever validation fails