Sha256: 9a3937f1eedaef2068afcfbbc3df9f235907b75d11313b3f560158e914290b95

Contents?: true

Size: 781 Bytes

Versions: 1

Compression:

Stored size: 781 Bytes

Contents

<% wrap_grandstand_form do -%>
  <div class="field">
    <%= form.label :first_name %>
    <%= form.text_field :first_name, :class => 'half oversized text' %>
    <%= form.text_field :last_name, :class => 'half oversized text' %>
    <%= form.errors_on :first_name %>
  </div>
  <div class="field">
    <%= form.label :email %>
    <%= form.text_field :email, :class => 'text' %>
  </div>
  <div class="field">
    <%= form.label :password, @user.new_record? ? nil : 'New password' %>
    <%= form.password_field :password, :autocomplete => 'off', :class => 'text' %>
  </div>
  <div class="field">
    <%= form.label :password_confirmation, 'Password (again!)' %>
    <%= form.password_field :password_confirmation, :autocomplete => 'off', :class => 'text' %>
  </div>
<% end -%>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
grandstand-0.3.0 app/views/grandstand/users/_form.html.erb