Remove unused templates

This commit is contained in:
Jamil Bou Kheir
2020-05-21 23:49:55 -07:00
parent dc9005068e
commit b2f7dbc7d0
3 changed files with 0 additions and 51 deletions

View File

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

View File

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

View File

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