Finished chapter 11
[depot.git] / app / views / users / show.html.erb
1 <p>
2 <b>Name:</b>
3 <%=h @user.name %>
4 </p>
5
6 <p>
7 <b>Hashed password:</b>
8 <%=h @user.hashed_password %>
9 </p>
10
11 <p>
12 <b>Salt:</b>
13 <%=h @user.salt %>
14 </p>
15
16
17 <%= link_to 'Edit', edit_user_path(@user) %> |
18 <%= link_to 'Back', users_path %>