gitlab-org--gitlab-foss/app/views/errors/access_denied.html.haml

17 lines
508 B
Plaintext
Raw Normal View History

- message = local_assigns.fetch(:message, nil)
2016-11-29 18:44:07 +00:00
- content_for(:title, 'Access Denied')
2018-05-31 21:28:19 +00:00
= image_tag('illustrations/error-403.svg', alt: '403', lazy: false)
2016-11-29 18:44:07 +00:00
.container
2018-05-31 21:28:19 +00:00
%h3
= s_("403|You don't have the permission to access this page.")
- if message
%p
= message
2018-05-31 21:28:19 +00:00
%p
2018-11-19 15:03:58 +00:00
= s_('403|Please contact your GitLab administrator to get permission.')
.action-container.js-go-back{ hidden: true }
%button{ type: 'button', class: 'btn btn-success' }
2018-05-31 21:28:19 +00:00
= s_('Go Back')
= render "errors/footer"