2018-10-24 19:57:58 +08:00
|
|
|
<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 -%>
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2020-03-27 16:43:49 +08:00
|
|
|
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %>
|
|
|
|
<%= link_to t("devise.links.forgot"), new_password_path(resource_name), class: 'forgot-password-link' %><br />
|
2018-10-24 19:57:58 +08:00
|
|
|
<% end -%>
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2020-03-27 16:43:49 +08:00
|
|
|
<%- if devise_mapping.registerable? && Rails.configuration.x.enable_user_registration && controller_name != 'registrations' %>
|
|
|
|
<%= link_to t("devise.links.signup"), new_registration_path(resource_name), class: 'signup-link' %><br />
|
2018-10-24 19:57:58 +08:00
|
|
|
<% end -%>
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2018-10-24 19:57:58 +08:00
|
|
|
<%- 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 -%>
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2020-08-06 21:18:20 +08:00
|
|
|
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' && flash[:alert] == t('devise.failure.locked') %>
|
2018-10-24 19:57:58 +08:00
|
|
|
<%= link_to t("devise.links.not_receive_unlock"), new_unlock_path(resource_name) %><br />
|
|
|
|
<% end -%>
|
2016-02-12 23:52:43 +08:00
|
|
|
|
2018-10-24 19:57:58 +08:00
|
|
|
<%- if devise_mapping.omniauthable? && resource_class.omniauth_providers.any? %>
|
|
|
|
<div data-hook="omniauth-sign-in-links"></div>
|
|
|
|
<% end -%>
|
2018-02-26 18:05:05 +08:00
|
|
|
|
2020-03-27 16:43:49 +08:00
|
|
|
<%- unless defined?(linkedin_skip) %>
|
|
|
|
<%- if Rails.configuration.x.enable_user_registration && Rails.configuration.x.linkedin_signin_enabled && @oauth_authorize != true %>
|
|
|
|
<%= render partial: "users/shared/linkedin_sign_in_links", locals: { resource_name: resource_name } %>
|
2018-02-26 18:05:05 +08:00
|
|
|
<% end -%>
|
|
|
|
<% end -%>
|
2019-12-11 00:24:53 +08:00
|
|
|
|
|
|
|
<div class="azure-sign-in-actions">
|
|
|
|
<%= render partial: "users/shared/azure_sign_in_links", locals: { resource_name: resource_name } %>
|
|
|
|
</div>
|
2018-10-24 19:57:58 +08:00
|
|
|
</div>
|