Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_registration_enabled_callout.html.haml « header « layouts « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03e961bda8f743cf089ca307223ed024365dd752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- return unless show_registration_enabled_user_callout?

= render Pajamas::AlertComponent.new(title: _('Anyone can register for an account.'),
  variant: :warning,
  alert_class: 'js-registration-enabled-callout',
  alert_data: { feature_id: Users::CalloutsHelper::REGISTRATION_ENABLED_CALLOUT,
                dismiss_endpoint: callouts_path },
  close_button_data: { testid: 'close-registration-enabled-callout' }) do |c|
  = c.body do
    = _('Only allow anyone to register for accounts on GitLab instances that you intend to be used by anyone. Allowing anyone to register makes GitLab instances more vulnerable.')
  = c.actions do
    = link_to general_admin_application_settings_path(anchor: 'js-signup-settings'), class: 'btn gl-alert-action btn-confirm btn-md gl-button' do
      %span.gl-button-text
        = _('Turn off')
    %button.btn.gl-alert-action.btn-default.btn-md.gl-button.js-close
      %span.gl-button-text
        = _('Acknowledge')