access_denied.html.haml 532 Bytes
Newer Older
1
- message = local_assigns.fetch(:message, nil)
2
- content_for(:title, 'Access Denied')
Paul Slaughter's avatar
Paul Slaughter committed
3 4

= image_tag('illustrations/error-403.svg', alt: '403', lazy: false)
5
.container
Paul Slaughter's avatar
Paul Slaughter committed
6 7
  %h3
    = s_("403|You don't have the permission to access this page.")
8 9 10
  - if message
    %p
      = message
Paul Slaughter's avatar
Paul Slaughter committed
11
  %p
12
    = s_('403|Please contact your GitLab administrator to get permission.')
Paul Slaughter's avatar
Paul Slaughter committed
13 14 15 16
  .action-container.js-go-back{ style: 'display: none' }
    %a{ href: 'javascript:history.back()', class: 'btn btn-success' }
      = s_('Go Back')
= render "errors/footer"