2022-02-05 10:56:27 -08:00
|
|
|
.modal.fade#modal-passwd{ aria: { hidden: true, labelledby: "modal-passwd-label" }, role: :dialog, tabindex: -1 }
|
2020-04-25 06:16:45 -07:00
|
|
|
.modal-dialog
|
|
|
|
.modal-content
|
|
|
|
.modal-header
|
2022-02-05 10:26:04 -08:00
|
|
|
%h5.modal-title#modal-passwd-label= t(".title")
|
2023-01-04 04:26:27 -08:00
|
|
|
%button.btn-close{ data: { bs_dismiss: :modal }, type: :button }
|
2023-01-04 02:12:40 -08:00
|
|
|
%span.visually-hidden= t("voc.close")
|
2020-04-25 06:16:45 -07:00
|
|
|
.modal-body
|
2022-06-27 14:33:25 -07:00
|
|
|
= f.password_field :current_password, autocomplete: "current-password"
|
2020-04-25 06:16:45 -07:00
|
|
|
.modal-footer
|
2023-01-04 04:26:27 -08:00
|
|
|
%button.btn.btn-default{ data: { bs_dismiss: :modal }, type: :button }= t("voc.cancel")
|
2022-08-04 11:56:58 -07:00
|
|
|
= f.primary class: 'btn btn-primary', data: { disable_with: false }
|