21 lines
1.0 KiB
Plaintext
21 lines
1.0 KiB
Plaintext
%ul#devise-links
|
|
%li= link_to 'Home', root_path, id: 'login-home'
|
|
- if controller_name != 'sessions'
|
|
%li= link_to "Inloggen", new_session_path(resource_name)
|
|
|
|
- if devise_mapping.registerable? && controller_name != 'registrations'
|
|
%li= link_to "Registreer", new_registration_path(resource_name)
|
|
|
|
- if devise_mapping.recoverable? && controller_name != 'passwords'
|
|
%li= link_to "Wachtwoord vergeten?", new_password_path(resource_name)
|
|
|
|
- if devise_mapping.confirmable? && controller_name != 'confirmations'
|
|
%li= link_to "Geen bevestigingsemail ontvangen?", new_confirmation_path(resource_name)
|
|
|
|
- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks'
|
|
%li= link_to "Geen unlock instructies ontvangen?", new_unlock_path(resource_name)
|
|
|
|
- if devise_mapping.omniauthable?
|
|
- resource_class.omniauth_providers.each do |provider|
|
|
%li= link_to "Inloggen met #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider)
|