Sha256: 65be34f5821aa6c6bdb87348900f63a2f3e34ab0ced5ddc3546dbebba3d22b66
Contents?: true
Size: 769 Bytes
Versions: 20
Compression:
Stored size: 769 Bytes
Contents
<% content_for :title do %>Change your password<% end %> <h2>Change your password</h2> <p> Your password has been reset. Choose a new password below. </p> <%= error_messages_for :user %> <% form_for(:user, :url => user_password_path(@user, :token => @user.password_reset_token), :html => { :method => :put }) do |form| %> <div class="password_field"> <%= form.label :password, "Choose password" %> <%= form.password_field :password %> </div> <div class="password_field"> <%= form.label :password_confirmation, "Confirm password" %> <%= form.password_field :password_confirmation %> </div> <div class="submit_field"> <%= form.submit "Save this password", :disable_with => "Please wait..." %> </div> <% end %>
Version data entries
20 entries across 20 versions & 1 rubygems