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: 3090c8236776816de27ada383cfed7963e5b3256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- content_for(:title, 'Auth Error')

.container
  = render partial: "shared/errors/graphic_422", formats: :svg
  %h3
    = _('Sign-in using %{provider} auth failed') % { provider: @provider }

  %p.light.subtitle
    = _('Sign-in failed because %{error}.') % { error: @error }

  %p
    = _('Try logging in using your username or email. If you have forgotten your password, try recovering it')

  = 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'

  %hr
  %p.light
    = _('If none of the options work, try contacting a GitLab administrator.')