Sha256: 3c2b946768211402b79e210054b781430486bc03b4b0c9daa00384b94a134b22

Contents?: true

Size: 777 Bytes

Versions: 4

Compression:

Stored size: 777 Bytes

Contents

-# View to reset a user password after the user has forgotten her password, or wants to set her initial password
-# when her account was created by an admin.
-# origin: RM

%h1 Choose a password
%p
  Please choose a new password for your account.
- form_for(@user, :url => password_path(:user_id => @user.id, :token => @user.confirmation_token), :html => { :method => :put }) do |form|
  %dl
    %dt
      = form.label :password, "New password"
    %dd
      = form.error_message_on :password
      = form.password_field :password
    %dt
      = form.label :password_confirmation
    %dd
      = form.error_message_on :password_confirmation
      = form.password_field :password_confirmation
  - buttons do
    = form.submit "Save password", :disable_with => "Please wait..."

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
serum-rails-0.2.1 spec/test_apps/rails-2-3/app/views/passwords/edit.html.haml
serum-rails-0.2.0 spec/test_apps/rails-2-3/app/views/passwords/edit.html.haml
serum-rails-0.1.1 spec/test_app/app/views/passwords/edit.html.haml
serum-rails-0.1.0 spec/test_app/app/views/passwords/edit.html.haml