diff --git a/apps/fg_http/lib/fg_http_web/templates/password_reset/edit.html.eex b/apps/fg_http/lib/fg_http_web/templates/password_reset/edit.html.eex deleted file mode 100644 index ed57b0cd4..000000000 --- a/apps/fg_http/lib/fg_http_web/templates/password_reset/edit.html.eex +++ /dev/null @@ -1,5 +0,0 @@ -

Edit Password reset

- -<%= render "form.html", Map.put(assigns, :action, Routes.password_reset_path(@conn, :update, @password_reset)) %> - -<%= link "Back", to: Routes.password_reset_path(@conn, :index) %> diff --git a/apps/fg_http/lib/fg_http_web/templates/password_reset/index.html.eex b/apps/fg_http/lib/fg_http_web/templates/password_reset/index.html.eex deleted file mode 100644 index 1139f045f..000000000 --- a/apps/fg_http/lib/fg_http_web/templates/password_reset/index.html.eex +++ /dev/null @@ -1,28 +0,0 @@ -

Listing Password resets

- - - - - - - - - - - -<%= for password_reset <- @password_resets do %> - - - - - - -<% end %> - -
Reset sent atReset token
<%= password_reset.reset_sent_at %><%= password_reset.reset_token %> - <%= link "Show", to: Routes.password_reset_path(@conn, :show, password_reset) %> - <%= link "Edit", to: Routes.password_reset_path(@conn, :edit, password_reset) %> - <%= link "Delete", to: Routes.password_reset_path(@conn, :delete, password_reset), method: :delete, data: [confirm: "Are you sure?"] %> -
- -<%= link "New Password reset", to: Routes.password_reset_path(@conn, :new) %> diff --git a/apps/fg_http/lib/fg_http_web/templates/password_reset/show.html.eex b/apps/fg_http/lib/fg_http_web/templates/password_reset/show.html.eex deleted file mode 100644 index a3470a023..000000000 --- a/apps/fg_http/lib/fg_http_web/templates/password_reset/show.html.eex +++ /dev/null @@ -1,18 +0,0 @@ -

Show Password reset

- - - -<%= link "Edit", to: Routes.password_reset_path(@conn, :edit, @password_reset) %> -<%= link "Back", to: Routes.password_reset_path(@conn, :index) %>