aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/devise/_links.erb
blob: e2a1bf3efc7bed1b4b60e96ccd77ce5da67b5c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<% content_for :sidebar do %>
<ul class="actions">
  <li>
  <%- if controller_name != 'sessions' %>
  <%= link_to t(".sign_in"), new_session_path(resource_name) %><br />
  <% end -%>
  </li>

  <li>
  <%- if devise_mapping.registerable? && controller_name != 'registrations' && Rails.application.config.accept_user_creation %>
  <%= link_to t(".sign_up"), new_registration_path(resource_name) %><br />
  <% end -%>
  </li>

  <li>
  <%- if devise_mapping.recoverable? && controller_name != 'passwords' %>
  <%= link_to t(".new_password"), new_password_path(resource_name) %><br />
  <% end -%>
  </li>

  <li>
  <%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
  <%= link_to t(".new_confirmation"), new_confirmation_path(resource_name) %><br />
  <% end -%>
  </li>

  <li>
  <%- 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 />
  <% end -%>
  </li>

  <li>
  <%- if devise_mapping.omniauthable? %>
    <%- resource_class.omniauth_providers.each do |provider| %>
      <%= link_to "Sign in with #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider) %><br />
    <% end -%>
  <% end -%>
  </li>
</ul>
<% end %>