2022-06-16 06:33:39 +00:00
|
|
|
/* This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
|
|
|
|
* Copyright (C) 2022 OzzieIsaacs
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
$(document).ready(function() {
|
|
|
|
i18next.use(i18nextHttpBackend).init({
|
|
|
|
lng: $('#password').data("lang"),
|
|
|
|
debug: false,
|
|
|
|
fallbackLng: 'en',
|
|
|
|
backend: {
|
|
|
|
loadPath: getPath() + "/static/js/libs/pwstrength/locales/{{lng}}.json",
|
|
|
|
},
|
|
|
|
|
|
|
|
}, function () {
|
2024-03-10 15:39:06 +00:00
|
|
|
if ($('#password').data("verify") === "True") {
|
2022-06-16 08:44:42 +00:00
|
|
|
// Initialized and ready to go
|
|
|
|
var options = {};
|
|
|
|
options.common = {
|
2022-06-16 12:16:00 +00:00
|
|
|
minChar: $('#password').data("min"),
|
|
|
|
maxChar: -1
|
2022-06-16 08:44:42 +00:00
|
|
|
}
|
|
|
|
options.ui = {
|
|
|
|
bootstrap3: true,
|
|
|
|
showProgressBar: false,
|
|
|
|
showErrors: true,
|
|
|
|
showVerdicts: false,
|
|
|
|
}
|
|
|
|
options.rules= {
|
2024-02-29 07:23:18 +00:00
|
|
|
specialCharClass: "(?=.*?[^\\p{Letter}\\s0-9])",
|
2022-06-16 08:44:42 +00:00
|
|
|
activated: {
|
|
|
|
wordNotEmail: false,
|
2022-06-16 09:15:17 +00:00
|
|
|
wordMinLength: $('#password').data("min"),
|
2022-06-16 08:44:42 +00:00
|
|
|
wordSimilarToUsername: false,
|
|
|
|
wordSequences: false,
|
|
|
|
wordTwoCharacterClasses: false,
|
|
|
|
wordRepetitions: false,
|
2022-06-16 09:15:17 +00:00
|
|
|
wordLowercase: $('#password').data("lower") === "True" ? true : false,
|
|
|
|
wordUppercase: $('#password').data("upper") === "True" ? true : false,
|
2024-02-29 07:23:18 +00:00
|
|
|
word: $('#password').data("word") === "True" ? true : false,
|
2022-06-16 09:15:17 +00:00
|
|
|
wordOneNumber: $('#password').data("number") === "True" ? true : false,
|
2022-06-16 08:44:42 +00:00
|
|
|
wordThreeNumbers: false,
|
2022-06-16 09:15:17 +00:00
|
|
|
wordOneSpecialChar: $('#password').data("special") === "True" ? true : false,
|
2022-06-16 08:44:42 +00:00
|
|
|
wordUpperLowerCombo: false,
|
|
|
|
wordLetterNumberCombo: false,
|
|
|
|
wordLetterNumberCharCombo: false
|
|
|
|
}
|
2022-06-16 06:33:39 +00:00
|
|
|
}
|
2022-06-16 08:44:42 +00:00
|
|
|
$('#password').pwstrength(options);
|
2022-06-16 06:33:39 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|