ftp-manager/app/views/accounts/show.html.erb
2016-08-27 21:40:21 -05:00

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 %>