Bootstrap 3 Password Strength Meter Example

jQuery(document).ready(function () {
    "use strict";
    var options = {};
    options.ui = {
        bootstrap3: true,
        container: "#pwd-container",
        showVerdictsInsideProgressBar: true,
        viewports: {
            progress: ".pwstrength_viewport_progress"
        }
    };
    options.common = {
        debug: true,
        onLoad: function () {
            $('#messages').text('Start typing password');
        }
    };
    $(':password').pwstrength(options);
});

Go back