2016-10-14 10:03:12 +11:00
|
|
|
- content_for :page_title do
|
2016-11-16 09:02:57 +11:00
|
|
|
= t('auth.login')
|
2016-10-14 10:03:12 +11:00
|
|
|
|
2017-10-11 09:52:25 +11:00
|
|
|
- content_for :header_tags do
|
|
|
|
= render partial: 'shared/og'
|
|
|
|
|
2022-01-24 01:52:58 +11:00
|
|
|
- unless omniauth_only?
|
|
|
|
= simple_form_for(resource, as: resource_name, url: session_path(resource_name)) do |f|
|
2022-12-16 02:44:29 +11:00
|
|
|
%h1.title= t('auth.sign_in.title', domain: site_hostname)
|
|
|
|
%p.lead= t('auth.sign_in.preamble_html', domain: site_hostname)
|
2022-01-24 01:52:58 +11:00
|
|
|
.fields-group
|
|
|
|
- if use_seamless_external_login?
|
2022-11-17 21:05:39 +11:00
|
|
|
= f.input :email, autofocus: true, wrapper: :with_label, label: t('simple_form.labels.defaults.username_or_email'), input_html: { 'aria-label': t('simple_form.labels.defaults.username_or_email') }, hint: false
|
2022-01-24 01:52:58 +11:00
|
|
|
- else
|
2022-11-17 21:05:39 +11:00
|
|
|
= f.input :email, autofocus: true, wrapper: :with_label, label: t('simple_form.labels.defaults.email'), input_html: { 'aria-label': t('simple_form.labels.defaults.email') }, hint: false
|
2022-01-24 01:52:58 +11:00
|
|
|
.fields-group
|
2022-11-17 21:05:39 +11:00
|
|
|
= f.input :password, wrapper: :with_label, label: t('simple_form.labels.defaults.password'), input_html: { 'aria-label': t('simple_form.labels.defaults.password'), autocomplete: 'current-password' }, hint: false
|
2016-10-19 01:37:15 +11:00
|
|
|
|
2022-01-24 01:52:58 +11:00
|
|
|
.actions
|
|
|
|
= f.button :button, t('auth.login'), type: :submit
|
2016-03-06 08:43:05 +11:00
|
|
|
|
2023-03-16 06:07:43 +11:00
|
|
|
- if devise_mapping.omniauthable? && resource_class.omniauth_providers.any?
|
2018-02-04 15:42:13 +11:00
|
|
|
.simple_form.alternative-login
|
2022-01-24 01:52:58 +11:00
|
|
|
%h4= omniauth_only? ? t('auth.log_in_with') : t('auth.or_log_in_with')
|
2018-02-04 15:42:13 +11:00
|
|
|
|
|
|
|
.actions
|
|
|
|
- resource_class.omniauth_providers.each do |provider|
|
2022-01-24 01:52:58 +11:00
|
|
|
= provider_sign_in_link(provider)
|
2018-02-04 15:42:13 +11:00
|
|
|
|
2017-05-08 11:35:25 +10:00
|
|
|
.form-footer= render 'auth/shared/links'
|