2011-10-11 21:56:51 +01:00
|
|
|
- if controller_name != 'sessions'
|
2012-01-20 11:29:32 +00:00
|
|
|
= link_to t("layout.devise.shared_links.sign_in"), new_session_path(resource_name), :class => "text_button_padding link_button"
|
2011-10-11 21:56:51 +01:00
|
|
|
- if devise_mapping.registerable? && controller_name != 'registrations'
|
2012-02-09 17:46:23 +00:00
|
|
|
=# link_to t("layout.devise.shared_links.sign_up"), new_registration_path(resource_name), :class => "text_button_padding link_button"
|
|
|
|
= link_to t("layout.devise.shared_links.sign_up"), new_register_request_path, :class => "text_button_padding link_button" # to prereg form
|
2011-03-09 17:38:10 +00:00
|
|
|
- if devise_mapping.recoverable? && controller_name != 'passwords'
|
2012-01-20 11:29:32 +00:00
|
|
|
= link_to t("layout.devise.shared_links.forgot_password"), new_password_path(resource_name), :class => "text_button_padding link_button"
|
2011-10-11 21:56:51 +01:00
|
|
|
- if devise_mapping.confirmable? && controller_name != 'confirmations'
|
2012-01-20 11:29:32 +00:00
|
|
|
= link_to t("layout.devise.shared_links.confirm_again"), new_confirmation_path(resource_name), :class => "text_button_padding link_button"
|
2011-10-11 21:56:51 +01:00
|
|
|
- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks'
|
2012-01-20 11:29:32 +00:00
|
|
|
= link_to t("layout.devise.shared_links.unlock"), new_unlock_path(resource_name), :class => "text_button_padding link_button"
|
2012-02-09 17:46:23 +00:00
|
|
|
-# if devise_mapping.omniauthable?
|
2011-10-11 21:56:51 +01:00
|
|
|
- resource_class.omniauth_providers.each do |provider|
|
2012-01-20 11:29:32 +00:00
|
|
|
= link_to t("layout.devise.shared_links.sign_in_through", :provider => provider.to_s.classify), omniauth_authorize_path(resource_name, provider), :class => "text_button_padding link_button"
|