show.html.erb 273 B

1234567891011121314151617181920
  1. <p id="notice"><%= notice %></p>
  2. <p>
  3. <b>Name:</b>
  4. <%= @user.name %>
  5. </p>
  6. <p>
  7. <b>Hashed password:</b>
  8. <%= @user.hashed_password %>
  9. </p>
  10. <p>
  11. <b>Salt:</b>
  12. <%= @user.salt %>
  13. </p>
  14. <%= link_to 'Edit', edit_user_path(@user) %> |
  15. <%= link_to 'Back', users_path %>