Javascript - Simple Random Password Generator
Submitted by razormist on Tuesday, July 10, 2018 - 18:52.
In this tutorial we will create a Simple Random Password Generator using Javascript. JavaScript is a scripting or programming language that allows you to implement complex things on web pages. It can renders web pages in an interactive and dynamic fashion. It is widely used in designing a stunning website. This code can be used as your converter to your mathematical problem. So Let's do the coding...
There you have it we successfully created a Simple Random Password Generator
using javascript. I hope that this very simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!!
Before we started:
And this is the link for the bootstrap that has been used for the layout of the application https://getbootstrap.com/.The Main Interface
This code contains the interface of the application. This code will render application and display the form. To create this just write these block of code inside the text editor and save this as index.htm.- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
- </head>
- <body>
- <nav class="navbar navbar-default">
- <div class="container-fluid">
- </div>
- </nav>
- <div class="col-md-6 well">
- <hr style="border-top:1px dotted #ccc;"/>
- <div class="col-md-10">
- <form class="form-inline">
- <input type="text" id="password" placeholder="Password here..." class="form-control" readonly = "readonly"/>
- </form>
- </div>
- </div>
- </body>
- </html>
Creating the Script
This code contains the script of the application. This code will generate a password characters where the length is base on the input type value. To do this just copy write the code as shown below inside the text editor and save it as script.js.- var keys = "abcdefghijklmnopqrstubwsyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
- var password = '';
- function GetPassword(){
- var plength = document.getElementById('plength').value;
- document.getElementById('password').value = GeneratePassword(plength);
- }
- function GeneratePassword(plength){
- password='';
- for(i=0; i<plength; i++){
- password+=keys.charAt(Math.floor(Math.random()*keys.length));
- }
- return password;
- }