mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
Remove unused templates
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
<h1>Edit Password reset</h1>
|
||||
|
||||
<%= render "form.html", Map.put(assigns, :action, Routes.password_reset_path(@conn, :update, @password_reset)) %>
|
||||
|
||||
<span><%= link "Back", to: Routes.password_reset_path(@conn, :index) %></span>
|
||||
@@ -1,28 +0,0 @@
|
||||
<h1>Listing Password resets</h1>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Reset sent at</th>
|
||||
<th>Reset token</th>
|
||||
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<%= for password_reset <- @password_resets do %>
|
||||
<tr>
|
||||
<td><%= password_reset.reset_sent_at %></td>
|
||||
<td><%= password_reset.reset_token %></td>
|
||||
|
||||
<td>
|
||||
<span><%= link "Show", to: Routes.password_reset_path(@conn, :show, password_reset) %></span>
|
||||
<span><%= link "Edit", to: Routes.password_reset_path(@conn, :edit, password_reset) %></span>
|
||||
<span><%= link "Delete", to: Routes.password_reset_path(@conn, :delete, password_reset), method: :delete, data: [confirm: "Are you sure?"] %></span>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<span><%= link "New Password reset", to: Routes.password_reset_path(@conn, :new) %></span>
|
||||
@@ -1,18 +0,0 @@
|
||||
<h1>Show Password reset</h1>
|
||||
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<strong>Reset sent at:</strong>
|
||||
<%= @password_reset.reset_sent_at %>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<strong>Reset token:</strong>
|
||||
<%= @password_reset.reset_token %>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
<span><%= link "Edit", to: Routes.password_reset_path(@conn, :edit, @password_reset) %></span>
|
||||
<span><%= link "Back", to: Routes.password_reset_path(@conn, :index) %></span>
|
||||
Reference in New Issue
Block a user