YaleSTC/shifts

View on GitHub
app/views/password_resets/edit.html.erb

Summary

Maintainability
Test Coverage
<h1>Change My Password</h1>

<%= form_for @user, url: password_reset_path, method: :put do |f| %>
  <%= f.error_messages %>
  <%= f.label :password %><br />
  <%= f.password_field :password %><br />
  <br />
  <%= f.label :password_confirmation %><br />
  <%= f.password_field :password_confirmation %><br />
  <br />
  <%= f.submit "Update my password and bring me to the login page" %>
<% end %>