Mark Moser
1ba40c965d
Squashed commit of the following: commit fde3cc16310062842ccc676a7c33ebfe9b7a3372 Author: Mark Moser <MarkAMoser@gmail.com> Date: Sun Sep 11 19:51:32 2016 -0500 icons commit f4765d24073cdc7e790e9d6fbb73155ba96ac414 Author: Mark Moser <MarkAMoser@gmail.com> Date: Sun Sep 11 19:22:14 2016 -0500 view toggling commit 0929b005981a34e46aa0ad6e59d315d5203eed02 Author: Mark Moser <MarkAMoser@gmail.com> Date: Sun Sep 11 10:21:03 2016 -0500 controller xhr commit 859e1dff28f17feb43f9facc57f887f24e9e8fed Author: Mark Moser <MarkAMoser@gmail.com> Date: Sun Sep 11 09:18:57 2016 -0500 wip
38 lines
838 B
Plaintext
38 lines
838 B
Plaintext
<p id="notice"><%= notice %></p>
|
|
|
|
<h1>Accounts</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Username</th>
|
|
<th>Password</th>
|
|
<th>Site</th>
|
|
<th>Home</th>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @accounts.each do |account| %>
|
|
<tr>
|
|
<td><%= account.username %></td>
|
|
<td class="passwd" data-id="passwd">
|
|
<%= link_to reveal_password_path(account.id), remote: true do %>
|
|
<i class="fa fa-lock fa-lg"></i>
|
|
<% end %>
|
|
<span>********</span>
|
|
</td>
|
|
<td><%= account.site %></td>
|
|
<td><%= account.home %></td>
|
|
<td><%= link_to 'Show', account %></td>
|
|
<td><%= link_to 'Edit', edit_account_path(account) %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New Account', new_account_path %>
|