frenzy/lib/frenzy_web/templates/account/show.html.eex

36 lines
1.0 KiB
Elixir
Raw Normal View History

2019-03-31 15:52:20 +00:00
<h1>User Settings</h1>
2019-04-01 16:24:22 +00:00
<h2><pre><%= @user.username %></pre></h2>
2019-03-31 15:52:20 +00:00
2019-04-01 16:24:22 +00:00
<a href="<%= Routes.account_path(@conn, :change_password) %>" class="btn btn-secondary">Change Password</a>
2019-03-31 17:19:11 +00:00
2019-04-01 16:24:22 +00:00
<a href="<%= Routes.account_path(@conn, :change_fever_password) %>" class="btn btn-secondary">Change Fever Password</a>
2019-04-01 15:29:03 +00:00
2019-04-01 16:24:22 +00:00
<h2 class="mt-4">Approved Clients</h2>
2019-04-01 15:29:03 +00:00
2019-04-01 16:24:22 +00:00
<table class="table table-striped">
<thead>
2019-04-01 15:29:03 +00:00
<tr>
2019-04-01 16:24:22 +00:00
<th>Client</th>
<th>Revoke Access</th>
2019-04-01 15:29:03 +00:00
</tr>
2019-04-01 16:24:22 +00:00
</thead>
<tbody>
<%= for {approved, fervor} <- @clients do %>
<tr>
<td>
<%= if fervor.website do %>
<a href="<%= fervor.website %>"><%= fervor.client_name %></a>
<% else %>
<%= fervor.client_name %>
<% end %>
</td>
<td>
<%= form_tag Routes.account_path(@conn, :remove_client), method: :post do %>
<input type="hidden" name="client_id" value="<%= approved.client_id %>">
<%= submit "Revoke", class: "btn btn-danger" %>
<% end %>
</td>
</tr>
<% end %>
</tbody>
2019-04-01 15:29:03 +00:00
</table>