From 0fcd90682e2dd7ce670a32496042c0c91e89b84e Mon Sep 17 00:00:00 2001 From: Arnaud Levy <contact@arnaudlevy.com> Date: Mon, 18 Oct 2021 12:50:27 +0200 Subject: [PATCH] clean --- app/views/devise/confirmations/new.html.erb | 1 - app/views/devise/passwords/edit.html.erb | 1 - app/views/devise/passwords/new.html.erb | 1 - app/views/devise/registrations/new.html.erb | 2 -- app/views/devise/shared/_links.html.erb | 5 ----- app/views/devise/unlocks/new.html.erb | 1 - app/views/layouts/devise.html.erb | 4 +++- 7 files changed, 3 insertions(+), 12 deletions(-) delete mode 100644 app/views/devise/shared/_links.html.erb diff --git a/app/views/devise/confirmations/new.html.erb b/app/views/devise/confirmations/new.html.erb index b15178511..e0413b713 100644 --- a/app/views/devise/confirmations/new.html.erb +++ b/app/views/devise/confirmations/new.html.erb @@ -14,7 +14,6 @@ <div class="col-md-6"> <label class="form-label"> </label><br> <%= f.button :submit, t(".resend_confirmation_instructions"), class: 'btn btn-primary' %> - <%= render "devise/shared/links" %> </div> </div> <% end %> diff --git a/app/views/devise/passwords/edit.html.erb b/app/views/devise/passwords/edit.html.erb index 8ccf236ee..6dfd0d076 100644 --- a/app/views/devise/passwords/edit.html.erb +++ b/app/views/devise/passwords/edit.html.erb @@ -23,7 +23,6 @@ }, input_html: { autocomplete: "new-password" } %> <%= f.button :submit, t(".change_my_password"), class: 'btn btn-primary' %> - <%= render "devise/shared/links" %> </div> <div class="col-md-6"> <%= f.input :password_confirmation, diff --git a/app/views/devise/passwords/new.html.erb b/app/views/devise/passwords/new.html.erb index 2cd101ea2..6a2608462 100644 --- a/app/views/devise/passwords/new.html.erb +++ b/app/views/devise/passwords/new.html.erb @@ -9,7 +9,6 @@ required: true, autofocus: true, input_html: { autocomplete: "email" } %> - <%= render "devise/shared/links" %> </div> <div class="col-md-6"> <label class="form-label"> </label><br> diff --git a/app/views/devise/registrations/new.html.erb b/app/views/devise/registrations/new.html.erb index e79437ebf..5aa32d831 100644 --- a/app/views/devise/registrations/new.html.erb +++ b/app/views/devise/registrations/new.html.erb @@ -49,5 +49,3 @@ </div> <%= f.button :submit, t(".sign_up"), class: 'btn btn-primary' %> <% end %> - -<%= render "devise/shared/links" %> diff --git a/app/views/devise/shared/_links.html.erb b/app/views/devise/shared/_links.html.erb deleted file mode 100644 index 4b7516178..000000000 --- a/app/views/devise/shared/_links.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -<div class="mt-3"> - <%- if controller_name != 'sessions' %> - <%= link_to t(".sign_in"), new_session_path(resource_name) %><br /> - <% end %> -</div> diff --git a/app/views/devise/unlocks/new.html.erb b/app/views/devise/unlocks/new.html.erb index e5086ff94..75388e556 100644 --- a/app/views/devise/unlocks/new.html.erb +++ b/app/views/devise/unlocks/new.html.erb @@ -13,7 +13,6 @@ <div class="col-md-6"> <label class="form-label"> </label><br> <%= f.button :submit, t(".resend_unlock_instructions"), class: 'btn btn-primary' %> - <%= render "devise/shared/links" %> </div> </div> <% end %> diff --git a/app/views/layouts/devise.html.erb b/app/views/layouts/devise.html.erb index 468087632..f41e67ebf 100644 --- a/app/views/layouts/devise.html.erb +++ b/app/views/layouts/devise.html.erb @@ -14,7 +14,9 @@ <div class="container"> <div class="row"> <div class="col-sm-10 mx-auto"> - <h1 class="my-5 py-5 text-center"><%= current_university %></h1> + <h1 class="my-5 py-5 text-center"> + <%= link_to current_university, root_path %> + </h1> <div class="card"> <div class="card-body text-start"> <% unless notice.blank? %> -- GitLab