2016-10-13 16:03:12 -07:00
|
|
|
- content_for :page_title do
|
2016-11-15 14:02:57 -08:00
|
|
|
= t('auth.login')
|
2016-10-13 16:03:12 -07:00
|
|
|
|
2017-10-10 15:52:25 -07:00
|
|
|
- content_for :header_tags do
|
|
|
|
= render partial: 'shared/og'
|
|
|
|
|
2016-10-18 07:37:15 -07:00
|
|
|
= simple_form_for(resource, as: resource_name, url: session_path(resource_name)) do |f|
|
2018-02-28 10:04:53 -08:00
|
|
|
- if use_seamless_external_login?
|
2018-02-02 01:18:55 -08:00
|
|
|
= f.input :email, autofocus: true, placeholder: t('simple_form.labels.defaults.username_or_email'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.username_or_email') }
|
|
|
|
- else
|
|
|
|
= f.input :email, autofocus: true, placeholder: t('simple_form.labels.defaults.email'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.email') }
|
2017-07-29 05:20:31 -07:00
|
|
|
= f.input :password, placeholder: t('simple_form.labels.defaults.password'), required: true, input_html: { 'aria-label' => t('simple_form.labels.defaults.password'), :autocomplete => 'off' }
|
2016-10-18 07:37:15 -07:00
|
|
|
|
2016-03-05 13:43:05 -08:00
|
|
|
.actions
|
2016-11-15 14:02:57 -08:00
|
|
|
= f.button :button, t('auth.login'), type: :submit
|
2016-03-05 13:43:05 -08:00
|
|
|
|
2018-02-03 20:42:13 -08:00
|
|
|
- if devise_mapping.omniauthable? and resource_class.omniauth_providers.any?
|
|
|
|
.simple_form.alternative-login
|
|
|
|
%h4= t('auth.or_log_in_with')
|
|
|
|
|
|
|
|
.actions
|
|
|
|
- resource_class.omniauth_providers.each do |provider|
|
|
|
|
= link_to omniauth_authorize_path(resource_name, provider), class: "button button-#{provider}" do
|
|
|
|
= t("auth.providers.#{provider}", default: provider.to_s.chomp("_oauth2").capitalize)
|
|
|
|
|
2017-05-07 18:35:25 -07:00
|
|
|
.form-footer= render 'auth/shared/links'
|