basic.html 1003 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Basic PasswordBox - jQuery EasyUI Demo</title>
  6. <link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
  7. <link rel="stylesheet" type="text/css" href="../../themes/icon.css">
  8. <link rel="stylesheet" type="text/css" href="../demo.css">
  9. <script type="text/javascript" src="../../jquery.min.js"></script>
  10. <script type="text/javascript" src="../../jquery.easyui.min.js"></script>
  11. </head>
  12. <body>
  13. <h2>Basic PasswordBox</h2>
  14. <p>The passwordbox allows a user to enter passwords.</p>
  15. <div style="margin:20px 0;"></div>
  16. <div class="easyui-panel" style="width:400px;padding:50px 60px">
  17. <div style="margin-bottom:20px">
  18. <input class="easyui-textbox" prompt="Username" iconWidth="28" style="width:100%;height:34px;padding:10px;">
  19. </div>
  20. <div style="margin-bottom:20px">
  21. <input class="easyui-passwordbox" prompt="Password" iconWidth="28" style="width:100%;height:34px;padding:10px">
  22. </div>
  23. </div>
  24. </body>
  25. </html>