Welcome to mirror list, hosted at ThFree Co, Russian Federation.

omniauth_error.html.haml « errors « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c48e12561a71a72adbf0066c8c32678091693296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- content_for(:title, 'Auth Error')

.container
  = render partial: "shared/errors/graphic_422", formats: :svg
  %h2
    = _('Sign-in using %{provider} auth failed') % { provider: @provider }
  .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.')