Sha256: 3c03e714f03f243134573207db17386bf5c828e51ada80cc7edb8f1c9fc1218f
Contents?: true
Size: 611 Bytes
Versions: 20
Compression:
Stored size: 611 Bytes
Contents
<% provide(:title, 'Sign up') %> <h1>Sign up</h1> <div class="row"> <div class="span6 offset3"> <%= form_for(@user) do |f| %> <%= render 'shared/error_messages', object: f.object %> <%= f.label :name %> <%= f.text_field :name %> <%= f.label :email %> <%= f.text_field :email %> <%= f.label :password %> <%= f.password_field :password %> <%= f.label :password_confirmation, "Confirmation" %> <%= f.password_field :password_confirmation %> <%= f.submit "Create my account", class: "btn btn-large btn-primary" %> <% end %> </div> </div>
Version data entries
20 entries across 20 versions & 2 rubygems