Advertisement
KaloyanDDimitrov

index.html

Jul 24th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <title>Password</title>
  8. </head>
  9. <body>
  10.     <input id='userNameInput' placeholder='User Name'>
  11.     <input id='passLength' placeholder='Length 3-25' type="number" min ='3' max ='25'>
  12.     <span id='output'></span>
  13.     <button id='randomPass' onclick="generatePassword()">Random Password</button>
  14.     <button id='sendDb' onclick="sendDb()">Random Password</button>
  15.     <script src="main.js"></script>
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement