Вход Регистрация
Файл: password-punch/docs/tutorial.html
Строк: 195
<?php
<!DOCTYPE html>
<
html><head>
        <
title>jQuery Password Punch Examples</title>

        <
style>

            .
hljs {
                
background#f8f8f8 none repeat scroll 0 0;
                
color#333;
                
displayblock;
                
overflow-xauto;
                
padding0.5em;
            }
            .
hljs-comment, .hljs-template_comment, .diff .hljs-header, .hljs-javadoc {
                
color#998;
                
font-styleitalic;
            }
            .
hljs-keyword, .css .rule .hljs-keyword, .hljs-winutils, .javascript .hljs-title, .nginx .hljs-title, .hljs-subst, .hljs-request, .hljs-status {
                
color#333;
                
font-weightbold;
            }
            .
hljs-number, .hljs-hexcolor, .ruby .hljs-constant {
                
color#008080;
            
}
            .
hljs-string, .hljs-tag .hljs-value, .hljs-phpdoc, .hljs-dartdoc, .tex .hljs-formula {
                
color#d14;
            
}
            .
hljs-title, .hljs-id, .scss .hljs-preprocessor {
                
color#900;
                
font-weightbold;
            }
            .
javascript .hljs-title, .hljs-list .hljs-keyword, .hljs-subst {
                
font-weightnormal;
            }
            .
hljs-class .hljs-title, .hljs-type, .vhdl .hljs-literal, .tex .hljs-command {
                
color#458;
                
font-weightbold;
            }
            .
hljs-tag, .hljs-tag .hljs-title, .hljs-rules .hljs-property, .django .hljs-tag .hljs-keyword {
                
color#000080;
                
font-weightnormal;
            }
            .
hljs-attribute, .hljs-variable, .lisp .hljs-body {
                
color#008080;
            
}
            .
hljs-regexp {
                
color#009926;
            
}
            .
hljs-symbol, .ruby .hljs-symbol .hljs-string, .lisp .hljs-keyword, .clojure .hljs-keyword, .scheme .hljs-keyword, .tex .hljs-special, .hljs-prompt {
                
color#990073;
            
}
            .
hljs-built_in {
                
color#0086b3;
            
}
            .
hljs-preprocessor, .hljs-pragma, .hljs-pi, .hljs-doctype, .hljs-shebang, .hljs-cdata {
                
color#999;
                
font-weightbold;
            }
            .
hljs-deletion {
                
background#fdd none repeat scroll 0 0;
            
}
            .
hljs-addition {
                
background#dfd none repeat scroll 0 0;
            
}
            .
diff .hljs-change {
                
background#0086b3 none repeat scroll 0 0;
            
}
            .
hljs-chunk {
                
color#aaa;
            
}


        </
style>

    </
head>
    <
body>

        <
div class="docs">
            <
div class="wrap">
                <
span class="wi wi801"></span>
                <
h1>Password Punch jQuery Plugin</h1>


                <
pre><code class="html hljs ">
<
span class="hljs-tag">&lt;<span class="hljs-title">head</span>&gt;</span>
  <
span class="hljs-comment">&lt;!-- include password.punch.css  --&gt;</span>
  <
span class="hljs-tag">&lt;<span class="hljs-title">link</span> <span class="hljs-attribute">href</span>=<span class="hljs-value">"path/to/js/password-punch/password.punch.css"</span> <span class="hljs-attribute">rel</span>=<span class="hljs-value">"stylesheet"</span>&gt;</span>
 <
span class="hljs-tag">&lt;/<span class="hljs-title">script</span>&gt;</span>
<
span class="hljs-tag">&lt;/<span class="hljs-title">head</span>&gt;</span>
<
span class="hljs-tag">&lt;<span class="hljs-title">body</span>&gt;</span>
  
<
span class="hljs-tag">&lt;<span class="hljs-title">input</span> <span class="hljs-attribute">type</span>=<span class="hljs-value">"password"</span> <span class="hljs-attribute">id</span>=<span class="hljs-value">"password"</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-title">div</span>&gt;</span>


<
span class="hljs-comment">&lt;!-- have a target for where you want it shown --&gt;</span>
<
span class="hljs-tag">&lt;<span class="hljs-title">div</span> <span class="hljs-attribute">id</span>=<span class="hljs-value">"password_rules_container"</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-title">div</span>&gt;</span>
  

 <
span class="hljs-comment">&lt;!-- include a copy of jquery (if you haven't already) --&gt;</span>
  <span class="hljs-tag">&lt;<span class="hljs-title">script</span> <span class="hljs-attribute">src</span>=<span class="hljs-value">"path/to/js/jquery.min.js"</span>&gt;</span><span class="javascript"></span><span class="hljs-tag">&lt;/<span class="hljs-title">script</span>&gt;</span>

  <span class="hljs-comment">&lt;!-- include passwordPunch jQuery plugin --&gt;</span>
  <span class="hljs-tag">&lt;<span class="hljs-title">script</span> <span class="hljs-attribute">src</span>=<span class="hljs-value">"path/to/js/password-punch/jquery.password.punch.js"</span>&gt;</span><span class="javascript"></span><span class="hljs-tag">&lt;/<span class="hljs-title">script</span>&gt;</span>  

  <span class="hljs-tag">&lt;<span class="hljs-title">script</span> <span class="hljs-attribute">type</span>=<span class="hljs-value">"text/javascript"</span>&gt;</span><span class="javascript">
        $(document).ready(function () {
            $(&#x27;#password&#x27;).passwordPunch({
                rules: {
                    uppercase: {label: &#x27;Two Upper case characters&#x27;, limit: 2}, /*Limit - Number of characters required | label: Text to display*/
                    lowercase: {label: &#x27;One Lower case character&#x27;, limit: 1},
                    number: {label: &#x27;One number&#x27;, limit: 1},
                    special_char: {label: &#x27;One special chracter&#x27;, limit: 1},
                    min_length: {label: &#x27;6 Characters&#x27;, limit: 6}
                },
                onValidationCompleted: function () {
                    //fires once all the rules are validated
                },
                onValidationError function () {
                    //fires if rules are not validated
                }
            });
        });
  </span>

<span class="hljs-tag">&lt;/<span class="hljs-title">body</span>&gt;</span>

</code></pre>


            </div>
        </div>


       


            





    </body>
</html>
?>
Онлайн: 2
Реклама