Home

Pages Classes Methods

    Table of Contents

    • link_to “Log In”, new_session_path(resource_name)
    • link_to “Sign Up”, new_registration_path(resource_name)
    • link_to “Password?”, new_password_path(resource_name)
    • link_to “Didn't Receive Confirmation Instructions?”,
    • link_to “Didn't Receive Unlock Instructions?”,
    • link_to “Sign in with #{OmniAuth::Utils.camelize(provider)}”,
    • link_to “Cancel My Account”, registration_path(resource_name),

    Pages

    • init_form_materialize.coffee
    • devise.scss
    • new.html.haml
    • confirmation_instructions.html.haml
    • password_change.html.haml
    • reset_password_instructions.html.haml
    • unlock_instructions.html.haml
    • edit.html.haml
    • new.html.haml
    • edit.html.haml
    • new.html.haml
    • new.html.haml
    • _links.html.haml
    • new.html.haml
    • new.html.haml
    • confirmation_instructions.html.haml
    • password_change.html.haml
    • reset_password_instructions.html.haml
    • unlock_instructions.html.haml
    • edit.html.haml
    • new.html.haml
    • edit.html.haml
    • new.html.haml
    • new.html.haml
    • _links.html.haml
    • new.html.haml
    • new.html.slim
    • confirmation_instructions.html.slim
    • password_change.html.slim
    • reset_password_instructions.html.slim
    • unlock_instructions.html.slim
    • edit.html.slim
    • new.html.slim
    • edit.html.slim
    • new.html.slim
    • new.html.slim
    • _links.html.slim
    • new.html.slim
    • new.html.slim
    • confirmation_instructions.html.slim
    • password_change.html.slim
    • reset_password_instructions.html.slim
    • unlock_instructions.html.slim
    • edit.html.slim
    • new.html.slim
    • edit.html.slim
    • new.html.slim
    • new.html.slim
    • _links.html.slim
    • new.html.slim
    • if controller_name != 'sessions' && !current_user.present? Already a Member?

      link_to “Log In”, new_session_path(resource_name)¶ ↑

      %br/

    • if devise_mapping.registerable? && controller_name != 'registrations' Not A Member?

      link_to “Sign Up”, new_registration_path(resource_name)¶ ↑

      %br/

    • if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' Forgot

      link_to “Password?”, new_password_path(resource_name)¶ ↑

      %br/

    • if devise_mapping.confirmable? && controller_name != 'confirmations'

      link_to “Didn't Receive Confirmation Instructions?”,¶ ↑

      new_confirmation_path(resource_name)
      

      %br/

    • if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks'

      link_to “Didn't Receive Unlock Instructions?”,¶ ↑

      new_unlock_path(resource_name)
      

      %br/

    • if devise_mapping.omniauthable?

      • resource_class.omniauth_providers.each do |provider|

        link_to “Sign in with #{OmniAuth::Utils.camelize(provider)}”,¶ ↑

        omniauth_authorize_path(resource_name, provider)
        
    • if controller_name == 'registrations' && current_user.present?

      link_to “Cancel My Account”, registration_path(resource_name),¶ ↑

      data: { confirm: "Are You Sure you want to Delete Your Account?",
      method: :delete }, class: "btn waves-effect red"

    Validate

    Generated by RDoc 6.3.1.

    Based on Darkfish by Michael Granger.