2017-08-17 22:00:37 +05:30
|
|
|
- content_for(:title, 'Auth Error')
|
|
|
|
|
|
|
|
.container
|
2021-12-11 22:18:48 +05:30
|
|
|
= render partial: "shared/errors/graphic_422", formats: :svg
|
2022-08-13 15:12:31 +05:30
|
|
|
%h3
|
|
|
|
= _('Sign-in using %{provider} auth failed') % { provider: @provider }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
%p.light.subtitle
|
|
|
|
= _('Sign-in failed because %{error}.') % { error: @error }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
%p
|
|
|
|
= _('Try logging in using your username or email. If you have forgotten your password, try recovering it')
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
= link_to _('Sign in'), new_session_path(:user), class: 'gl-button btn primary'
|
|
|
|
= link_to _('Recover password'), new_password_path(:user), class: 'gl-button btn secondary'
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
%hr
|
2022-08-13 15:12:31 +05:30
|
|
|
%p.light
|
|
|
|
= _('If none of the options work, try contacting a GitLab administrator.')
|