Commit c9777518 authored by Jon Evans's avatar Jon Evans

Ruby 1.9 hash syntax

parent 4ce3ef41
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment