2017-08-17 22:00:37 +05:30
|
|
|
- content_for(:title, 'Not Found')
|
2018-11-08 19:23:39 +05:30
|
|
|
= image_tag('illustrations/error-404.svg', alt: '404', lazy: false)
|
2017-08-17 22:00:37 +05:30
|
|
|
.container
|
2018-11-08 19:23:39 +05:30
|
|
|
%h3
|
|
|
|
= s_('404|Page Not Found')
|
|
|
|
%p
|
|
|
|
= s_("404|Make sure the address is correct and the page hasn't moved.")
|
|
|
|
%p
|
|
|
|
= s_('404|Please contact your GitLab administrator if you think this is a mistake.')
|
|
|
|
.action-container
|
|
|
|
= form_tag search_path, method: :get, class: 'form-inline-flex' do |f|
|
|
|
|
.field
|
|
|
|
= search_field_tag :search, '', placeholder: _('Search for projects, issues, etc.'), class: 'form-control'
|
2019-12-26 22:10:19 +05:30
|
|
|
= button_tag _('Search'), class: 'btn btn-sm btn-success', name: nil, type: 'submit'
|
2018-11-08 19:23:39 +05:30
|
|
|
= render 'errors/footer'
|