From b2f7dbc7d04bf0807aa461e8511158943f03eed0 Mon Sep 17 00:00:00 2001 From: Jamil Bou Kheir Date: Thu, 21 May 2020 23:49:55 -0700 Subject: [PATCH] Remove unused templates --- .../templates/password_reset/edit.html.eex | 5 ---- .../templates/password_reset/index.html.eex | 28 ------------------- .../templates/password_reset/show.html.eex | 18 ------------ 3 files changed, 51 deletions(-) delete mode 100644 apps/fg_http/lib/fg_http_web/templates/password_reset/edit.html.eex delete mode 100644 apps/fg_http/lib/fg_http_web/templates/password_reset/index.html.eex delete mode 100644 apps/fg_http/lib/fg_http_web/templates/password_reset/show.html.eex 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) %>