2019-08-21 08:37:49 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Stable theme overrides for user password forms.
|
|
|
|
*/
|
|
|
|
|
|
|
|
(Drupal => {
|
|
|
|
/**
|
2020-02-27 14:26:56 +00:00
|
|
|
* Constructs a password confirm message element
|
2019-08-21 08:37:49 +00:00
|
|
|
*
|
|
|
|
* @return {string}
|
|
|
|
* A string representing a DOM fragment.
|
|
|
|
*/
|
|
|
|
Drupal.theme.passwordConfirmMessage = translate =>
|
2019-11-01 05:39:25 +00:00
|
|
|
`<div aria-live="polite" aria-atomic="true" class="password-confirm js-password-confirm js-password-confirm-message">${translate.confirmTitle} <span></span></div>`;
|
2019-08-21 08:37:49 +00:00
|
|
|
})(Drupal);
|