2021-09-24 05:22:37 -04:00
|
|
|
mixin formMessages()
|
|
|
|
div(
|
|
|
|
data-ol-form-messages='',
|
|
|
|
role="alert"
|
|
|
|
)
|
|
|
|
|
|
|
|
mixin customFormMessage(key, kind)
|
|
|
|
if kind === 'success'
|
|
|
|
div.alert.alert-success(
|
|
|
|
hidden,
|
|
|
|
data-ol-custom-form-message=key,
|
|
|
|
role="alert"
|
|
|
|
aria-live="polite"
|
|
|
|
)
|
|
|
|
block
|
|
|
|
else if kind === 'danger'
|
|
|
|
div.alert.alert-danger(
|
|
|
|
hidden,
|
|
|
|
data-ol-custom-form-message=key,
|
|
|
|
role="alert"
|
|
|
|
aria-live="assertive"
|
|
|
|
)
|
|
|
|
block
|
|
|
|
else
|
|
|
|
div.alert.alert-warning(
|
|
|
|
hidden,
|
|
|
|
data-ol-custom-form-message=key,
|
|
|
|
role="alert"
|
|
|
|
aria-live="polite"
|
|
|
|
)
|
|
|
|
block
|
2022-12-06 05:22:20 -05:00
|
|
|
|
|
|
|
mixin customValidationMessage(key)
|
|
|
|
div.invalid-feedback.mt-2(
|
|
|
|
hidden,
|
|
|
|
data-ol-custom-form-message=key
|
|
|
|
)
|
|
|
|
i.fa.fa-fw.fa-warning.me-1(aria-hidden="true")
|
|
|
|
div
|
|
|
|
block
|