summaryrefslogtreecommitdiff
path: root/app/views/errors/access_denied.html.haml
blob: 1ed7b56db1d92791de41c59f1b8aea2e85ea3974 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- message = local_assigns.fetch(:message, nil)
- content_for(:title, 'Access Denied')

= image_tag('illustrations/error-403.svg', alt: '403', lazy: false)
.container
  %h3
    = s_("403|You don't have the permission to access this page.")
  - if message
    %p
      = message
  %p
    = s_('403|Please contact your GitLab administrator to get permission.')
  .action-container.js-go-back{ hidden: true }
    %button{ type: 'button', class: 'btn btn-success' }
      = s_('Go Back')
= render "errors/footer"