mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
d9f6c249f9
Close SCI-3588
40 lines
2.2 KiB
Text
40 lines
2.2 KiB
Text
<div class="sign-in-up-links">
|
|
<%- if controller_name != 'sessions' %>
|
|
<% login = t("devise.links.login") %>
|
|
<% login = t("devise.links.login_with_provider") if action_name.in? %w(new_with_provider create_with_provider) %>
|
|
<%= link_to login, new_session_path(resource_name) %><br />
|
|
<% end -%>
|
|
|
|
<%- if devise_mapping.registerable? && Rails.configuration.x.enable_user_registration && controller_name != 'registrations' %>
|
|
<%= link_to t("devise.links.signup"), new_registration_path(resource_name) %><br />
|
|
<% end -%>
|
|
|
|
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %>
|
|
<%= link_to t("devise.links.forgot"), new_password_path(resource_name) %><br />
|
|
<% end -%>
|
|
|
|
<%- if Rails.configuration.x.enable_email_confirmations && devise_mapping.confirmable? && controller_name != 'confirmations' %>
|
|
<%= link_to t("devise.links.not_receive_confirmation"), new_confirmation_path(resource_name) %><br />
|
|
<% end -%>
|
|
|
|
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
|
|
<%= link_to t("devise.links.not_receive_unlock"), new_unlock_path(resource_name) %><br />
|
|
<% end -%>
|
|
|
|
<%- if devise_mapping.omniauthable? && resource_class.omniauth_providers.any? %>
|
|
<div data-hook="omniauth-sign-in-links"></div>
|
|
<% end -%>
|
|
|
|
<%- if Rails.configuration.x.enable_user_registration && Rails.configuration.x.linkedin_signin_enabled && @oauth_authorize != true %>
|
|
<%- if devise_mapping.omniauthable? && resource_class.omniauth_providers.any? && controller_name != 'registrations' %>
|
|
<%= link_to omniauth_authorize_path(resource_name, :linkedin), method: :post, :title => "Sign in with LinkedIn" do %>
|
|
<%= image_tag('linkedin/Sign-in-Large---Default.png',
|
|
class: 'linkedin-signin-button',
|
|
alt: "Sign in with LinkedIn",
|
|
onmouseover: "src='#{image_path('linkedin/Sign-in-Large---Hover.png')}'",
|
|
onmouseout: "src='#{image_path('linkedin/Sign-in-Large---Default.png')}'",
|
|
onclick: "src='#{image_path('linkedin/Sign-in-Large---Active.png')}'") %>
|
|
<% end -%>
|
|
<% end -%>
|
|
<% end -%>
|
|
</div>
|