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 @@ 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' %>
-Don't have an account? <%= link_to "Create one", new_registration_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-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' %>