tmartin314
tmartin314

Reputation: 4171

How to add class to this form_tag in Rails

I have this form_tag and I need to add a class to it. Not sure how to do it without breaking it:

<%= form_tag sessions_path do %>

Upvotes: 1

Views: 1191

Answers (2)

r3b00t
r3b00t

Reputation: 7543

<%= form_tag session_path, :class => 'class_name' do %>

Upvotes: 1

zwippie
zwippie

Reputation: 15525

<%= form_tag sessions_path, html: { class: 'something' } do %>

Upvotes: 6

Related Questions