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

_no_password.html.haml « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91cd91ec38b4237318710fb3832628bcad4ff741 (plain)
1
2
3
4
5
6
7
8
9
- if show_no_password_message?
  = render Pajamas::AlertComponent.new(variant: :warning,
    alert_class: 'js-no-password-message',
    close_button_class: 'js-hide-no-password-message') do |c|
    = c.body do
      = no_password_message
    = c.actions do
      = link_to _('Remind later'), '#', class: 'js-hide-no-password-message gl-alert-action btn btn-confirm btn-md gl-button'
      = link_to _("Don't show again"), profile_path(user: { hide_no_password: true }), method: :put, role: 'button', class: 'gl-alert-action btn btn-default btn-md gl-button'