25 lines
372 B
Plaintext
25 lines
372 B
Plaintext
|
<p id="notice"><%= notice %></p>
|
||
|
|
||
|
<p>
|
||
|
<strong>Username:</strong>
|
||
|
<%= @account.username %>
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
<strong>Password:</strong>
|
||
|
<%= @account.password %>
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
<strong>Home:</strong>
|
||
|
<%= @account.home %>
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
<strong>Site:</strong>
|
||
|
<%= @account.site %>
|
||
|
</p>
|
||
|
|
||
|
<%= link_to 'Edit', edit_account_path(@account) %> |
|
||
|
<%= link_to 'Back', accounts_path %>
|