debian-mirror-gitlab/app/views/errors/omniauth_error.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
605 B
Text
Raw Normal View History

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
2023-03-17 16:20:25 +05:30
%h2
2022-08-13 15:12:31 +05:30
= _('Sign-in using %{provider} auth failed') % { provider: @provider }
2023-03-17 16:20:25 +05:30
.gl-mb-5
= @error
.gl-mb-5
= render Pajamas::ButtonComponent.new(variant: :confirm,
href: new_session_path(:user),
button_options: { class: 'gl-mr-2' }) do
= _('Sign in')
= render Pajamas::ButtonComponent.new(href: new_password_path(:user)) do
= _('Recover password')
%div
= _('If you are unable to sign in or recover your password, contact a GitLab administrator.')