GithubHelp home page GithubHelp logo

Comments (3)

ablanco avatar ablanco commented on July 22, 2024

Yes, it is possible. You need to add a custom rule, you can find the doc here. There is also an example.

The idea is to call the method addRule and pass it a function and a score. The function will receive the score associated to the rule as a parameter, and must return false or a numeric value (usually the very same score). The function can calculate the return value in anyway it wants, but the idea is that if the function criteria matches with the password then it should return the score (a negative one if it's a penalization). The returned value by the function will be added to the password total score.

You can find plenty of examples of these functions in the rules.js file.

from jquery.pwstrength.bootstrap.

cleder avatar cleder commented on July 22, 2024

turns out what I really WANTED was:

    jQuery(document).ready(function () {
        "use strict";
        var options = {};
        options.ui = {
            showPopover: true,
            showErrors: true,
            errorMessages : {
                wordUpperLowerCombo: "Must contain UPPER- and lowercase letters",
                wordLetterNumberCombo: "Must contain numbers and Letters",
            }
        };
        options.rules = {
            activated: {
                wordNotEmail: true,
                wordRepetitions: true,
                wordUpperLowerCombo: true,
                wordLetterNumberCombo: true
            },
        };
        $('#password').pwstrength(options);
    });

So I had to add errorMessages for wordUpperLowerCombo and wordLetterNumberCombo and display them in a popover to guide the user to fulfill all three (+minLenght=6) requirements

from jquery.pwstrength.bootstrap.

ablanco avatar ablanco commented on July 22, 2024

I'm glad you found a way to make it work as you wanted :)

from jquery.pwstrength.bootstrap.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.