rosa-build/app/views/devise/shared/_links.haml

15 lines
1.4 KiB
Plaintext
Raw Normal View History

- 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"
- if devise_mapping.registerable? && controller_name != 'registrations'
=# 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"
- 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"
- 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"
-# if devise_mapping.omniauthable?
- 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"