diff --git a/app/views/layouts/auth.html.erb b/app/views/layouts/auth.html.erb index e6720d52..1b702ea2 100644 --- a/app/views/layouts/auth.html.erb +++ b/app/views/layouts/auth.html.erb @@ -33,14 +33,14 @@ <%= content_for?(:header_title) ? yield(:header_title).html_safe : "Your account" %> - <% if params[:controller] == "devise/sessions" && params[:action] == "new" %> -

- or <%= link_to "create an account", new_user_registration_path, class: 'font-medium text-candlelight-600 hover:text-candlelight-500' %> -

- <% elsif params[:controller] == "devise/registrations" && params[:action] == "new" %> -

- or <%= link_to "sign in to your account", new_user_session_path, class: 'font-medium text-candlelight-600 hover:text-candlelight-500' %> -

+ <% if controller_name == "sessions" %> +

+ or <%= link_to "create an account", new_registration_path, class: 'font-medium text-gray-600 hover:text-gray-400 transition' %> +

+ <% elsif controller_name == "registrations" %> +

+ or <%= link_to "sign in to your account", new_session_path, class: 'font-medium text-gray-600 hover:text-gray-400 transition' %> +

<% end %> @@ -50,7 +50,7 @@
-

Privacy PolicyTerms of Service

+

Privacy PolicyTerms of Service

diff --git a/app/views/registrations/new.html.erb b/app/views/registrations/new.html.erb index 9f3c5c6d..5b21f599 100644 --- a/app/views/registrations/new.html.erb +++ b/app/views/registrations/new.html.erb @@ -35,7 +35,3 @@ <%= form.submit "Continue", class: 'flex justify-center w-full px-4 py-3 text-sm font-medium text-white bg-black rounded-xl hover:bg-black focus:outline-none focus:ring-2 focus:ring-gray-200 shadow' %> <% end %> - -
-

Already have an account? <%= link_to "Sign in", new_session_path, class: 'font-medium text-candlelight-600 hover:text-candlelight-500' %>

-
diff --git a/app/views/sessions/new.html.erb b/app/views/sessions/new.html.erb index 06e3f1f0..93acd91f 100644 --- a/app/views/sessions/new.html.erb +++ b/app/views/sessions/new.html.erb @@ -2,11 +2,6 @@ header_title "Sign in to your account" %> -
-

Don't have an account? <%= link_to "Create one", new_registration_path, class: 'font-medium text-candlelight-600 hover:text-candlelight-500' %>

-
- - <%= form_with url: session_path, html: {class: 'space-y-6'} do |form| %>
<%= form.label :email, "Email address", class: 'p-4 pb-0 block text-sm font-medium text-gray-700' %> @@ -24,5 +19,5 @@ <% end %>
-

Forgot your password? <%= link_to "Reset it", new_password_reset_path, class: 'font-medium text-candlelight-600 hover:text-candlelight-500' %>

+

Forgot your password? <%= link_to "Reset it", new_password_reset_path, class: 'font-medium text-gray-600 hover:text-gray-400 transition' %>