IsenfireLDC

<HTML> Random Password Generator (Javascript and HTML)

May 5th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3. NOTE: If you want to use the random password generator, download this and the
  4. '<Javascript> Random Password Generator (Javascript and HTML)' (which is on my
  5. account).  Follow the second set of instructions on that Pastebin.  When you
  6. get to linking them together, locate where you downloaded the files.  After
  7. you have found them, copy the ENTIRE path for the Javascript.  It should look
  8. something like my example path below.  When you get the path, paste it between the
  9. quotations (where my example path is).
  10. -->
  11. <html>
  12.     <head>
  13.         <script src="C:\Users\ExampleUser\Downloads\randomPasswordGenerator.js"></script>
  14.     </head>
  15.    
  16.     <body>
  17.         <h1>Random Password Generator</h1>
  18.         <p>This password generator was made with simple code in Javascript and HTML.  This is one of my first (working) independent creations.  I did not get help to create this project.</p>
  19.         <button onclick="pwdGen()">Click Here to Generate Password</button>
  20.     </body>
  21. </html>
Add Comment
Please, Sign In to add comment