2017-06-12 12:13:22 -04:00
|
|
|
- if show_no_password_message?
|
2022-04-05 14:09:00 -04:00
|
|
|
= render Pajamas::AlertComponent.new(variant: :warning,
|
2021-11-05 14:12:21 -04:00
|
|
|
alert_class: 'js-no-password-message',
|
2022-04-05 14:09:00 -04:00
|
|
|
close_button_class: 'js-hide-no-password-message') do
|
2020-09-14 08:09:34 -04:00
|
|
|
.gl-alert-body
|
2021-11-05 14:12:21 -04:00
|
|
|
= no_password_message
|
2020-09-14 08:09:34 -04:00
|
|
|
.gl-alert-actions
|
2021-11-05 14:12:21 -04:00
|
|
|
= 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'
|