Skip to content
Snippets Groups Projects
Commit c9777518 authored by Jon Evans's avatar Jon Evans
Browse files

Ruby 1.9 hash syntax

parent 4ce3ef41
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -11,17 +11,17 @@
.clearfix
= f.label :name
.input
= f.text_field :name, required: true, :autocomplete => "off"
= f.text_field :name, required: true, autocomplete: "off"
%span.help-inline * required
.clearfix
= f.label :username
.input
= f.text_field :username, required: true, :autocomplete => "off"
= f.text_field :username, required: true, autocomplete: "off"
%span.help-inline * required
.clearfix
= f.label :email
.input
= f.text_field :email, required: true, :autocomplete => "off"
= f.text_field :email, required: true, autocomplete:"off"
%span.help-inline * required
 
%fieldset
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment