debian-mirror-gitlab/app/views/layouts/devise.html.haml

45 lines
1.7 KiB
Text
Raw Normal View History

2014-09-02 18:07:02 +05:30
!!! 5
2018-05-09 12:01:36 +05:30
%html.devise-layout-html{ class: system_message_class }
2014-09-02 18:07:02 +05:30
= render "layouts/head"
2019-12-04 20:38:33 +05:30
%body.ui-indigo.login-page.application.navless{ class: "#{client_class_list}", data: { page: body_data_page, qa_selector: 'login_page' } }
2019-07-07 11:18:12 +05:30
= header_message
2019-12-04 20:38:33 +05:30
= render "layouts/init_client_detection_flags"
2016-11-03 12:29:30 +05:30
.page-wrap
= render "layouts/header/empty"
2018-03-17 18:26:18 +05:30
.login-page-broadcast
= render "layouts/broadcast"
2016-11-03 12:29:30 +05:30
.container.navless-container
.content
= render "layouts/flash"
2019-09-04 21:01:54 +05:30
.row.mt-3
.col-sm-12
%h1.mb-3.font-weight-normal
2016-11-03 12:29:30 +05:30
= brand_title
2019-09-04 21:01:54 +05:30
.row.mb-3
.col-sm-7.order-12.order-sm-1.brand-holder
2018-03-17 18:26:18 +05:30
= brand_image
2018-05-09 12:01:36 +05:30
- if current_appearance&.description?
2016-11-03 12:29:30 +05:30
= brand_text
- else
2019-09-04 21:01:54 +05:30
%h3.mt-sm-0
2018-11-18 11:00:15 +05:30
= _('Open source software to collaborate on code')
2014-09-02 18:07:02 +05:30
2016-11-03 12:29:30 +05:30
%p
2018-11-18 11:00:15 +05:30
= _('Manage Git repositories with fine-grained access controls that keep your code secure. Perform code reviews and enhance collaboration with merge requests. Each project can also have an issue tracker and a wiki.')
2015-04-26 12:48:37 +05:30
2018-03-17 18:26:18 +05:30
- if Gitlab::CurrentSettings.sign_in_text.present?
= markdown_field(Gitlab::CurrentSettings.current_application_settings, :sign_in_text)
2019-09-04 21:01:54 +05:30
= render_if_exists 'layouts/devise_help_text'
.col-sm-5.order-1.order-sm-12.new-session-forms-container
2018-11-08 19:23:39 +05:30
= yield
2014-09-02 18:07:02 +05:30
2016-11-03 12:29:30 +05:30
%hr.footer-fixed
.container.footer-container
.footer-links
2018-11-18 11:00:15 +05:30
= link_to _("Explore"), explore_root_path
= link_to _("Help"), help_path
= link_to _("About GitLab"), "https://about.gitlab.com/"
2019-07-07 11:18:12 +05:30
= footer_message