1
0
Fork 0

Fix code style

This commit is contained in:
Alex Kotov 2019-07-08 19:14:18 +05:00
parent 878932fe7b
commit 49b7e000a4
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 10 additions and 4 deletions

View File

@ -1,17 +1,20 @@
<hr/>
<%- if display_password_reset_link? %>
<%= link_to translate('.forgot_your_password'), new_password_path(resource_name) %>
<%= link_to translate('.forgot_your_password'),
new_password_path(resource_name) %>
<br/>
<% end -%>
<%- if display_email_confirmation_link? %>
<%= link_to translate('.didn_t_receive_confirmation_instructions'), new_confirmation_path(resource_name) %>
<%= link_to translate('.didn_t_receive_confirmation_instructions'),
new_confirmation_path(resource_name) %>
<br/>
<% end -%>
<%- if display_unlock_link? %>
<%= link_to translate('.didn_t_receive_unlock_instructions'), new_unlock_path(resource_name) %>
<%= link_to translate('.didn_t_receive_unlock_instructions'),
new_unlock_path(resource_name) %>
<br/>
<% end -%>
@ -19,7 +22,10 @@
<%- if display_omniauth_links? %>
<%- resource_class.omniauth_providers.each do |provider| %>
<%= link_to translate('.sign_in_with_provider', provider: OmniAuth::Utils.camelize(provider)), omniauth_authorize_path(resource_name, provider), method: :post %>
<%= link_to translate('.sign_in_with_provider',
provider: OmniAuth::Utils.camelize(provider)),
omniauth_authorize_path(resource_name, provider),
method: :post %>
<br/>
<% end -%>
<% end -%>