Skip to content

Commit

Permalink
Merge pull request #37 from tajulafreen/Password-Generator
Browse files Browse the repository at this point in the history
50Projects-HTML-CSS-JavaScript : Password generator
  • Loading branch information
tajulafreen authored Aug 30, 2024
2 parents 4902908 + ef8f6c1 commit 5bc3c4a
Show file tree
Hide file tree
Showing 4 changed files with 229 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,17 @@ In order to run this project you need:
</details>
</li>

<li>
<details>
<summary>Password Generator</summary>
<p>The Password Generator App is a web application that allows users to create secure, customizable passwords based on user-defined criteria such as length and character types. It offers a simple interface for generating and copying passwords to the clipboard. This tool enhances online security by providing strong, random passwords.</p>
<ul>
<li><a href="https://tajulafreen.github.io/50Projects-HTML-CSS-JavaScript/Source-Code/PasswordGenerator/">Live Demo</a></li>
<li><a href="https://github.com/tajulafreen/50Projects-HTML-CSS-JavaScript/tree/main/Source-Code/PasswordGenerator">Source</a></li>
</ul>
</details>
</li>

</ol>

<p align="right">(<a href="#readme-top">back to top</a>)</p>
Expand Down
55 changes: 55 additions & 0 deletions Source-Code/PasswordGenerator/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />

<title>Password Generator</title>
</head>
<body>
<div class="card">
<div class="container">
<h2>Password Generator</h2>
<div class="result-container">
<span id="result"></span>
<button class="btn" id="clipboard">
<i class="far fa-clipboard"></i>
</button>
</div>
<div class="settings">
<div class="setting">
<label>Password Length</label>
<input type="number" id="length" min="4" max="20" value="20" />
</div>
<div class="setting">
<label>Include uppercase letters</label>
<input type="checkbox" id="uppercase" checked />
</div>
<div class="setting">
<label>Include lowercase letters</label>
<input type="checkbox" id="lowercase" checked />
</div>
<div class="setting">
<label>Include numbers</label>
<input type="checkbox" id="numbers" checked />
</div>
<div class="setting">
<label>Include symbols</label>
<input type="checkbox" id="symbols" checked />
</div>
</div>
</div>
<button class="btn btn-large" id="generate">Generate Password</button>
</div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/vanilla-tilt/1.7.0/vanilla-tilt.min.js"></script>
<script src="script.js"></script>
</body>
</html>
80 changes: 80 additions & 0 deletions Source-Code/PasswordGenerator/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
/* eslint-disable no-loop-func */
const resultEl = document.getElementById('result');
const lengthEl = document.getElementById('length');
const uppercaseEl = document.getElementById('uppercase');
const lowercaseEl = document.getElementById('lowercase');
const numbersEl = document.getElementById('numbers');
const symbolsEl = document.getElementById('symbols');
const generateEl = document.getElementById('generate');
const clipboardEl = document.getElementById('clipboard');

clipboardEl.addEventListener('click', () => {
const textarea = document.createElement('textarea');
const password = resultEl.innerText;

if (!password) {
return;
}

textarea.value = password;
document.body.appendChild(textarea);
textarea.select();
document.execCommand('copy');
textarea.remove();
alert('Password copied to clipboard!');
});

const getRandomLower = () => String.fromCharCode(Math.floor(Math.random() * 26) + 97);

const getRandomUpper = () => String.fromCharCode(Math.floor(Math.random() * 26) + 65);

const getRandomNumber = () => String.fromCharCode(Math.floor(Math.random() * 10) + 48);

const getRandomSymbol = () => {
const symbols = '!@#$%^&*(){}[]=<>/,.';
return symbols[Math.floor(Math.random() * symbols.length)];
};

const randomFunc = {
lower: getRandomLower,
upper: getRandomUpper,
number: getRandomNumber,
symbol: getRandomSymbol,
};
const generatePassword = (lower, upper, number, symbol, length) => {
let generatedPassword = '';
const typesCount = lower + upper + number + symbol;
const typesArr = [{ lower }, { upper }, { number }, { symbol }].filter(
(item) => Object.values(item)[0],
);

if (typesCount === 0) {
return '';
}

for (let i = 0; i < length; i += typesCount) {
typesArr.forEach((type) => {
const funcName = Object.keys(type)[0];
generatedPassword += randomFunc[funcName]();
});
}

const finalPassword = generatedPassword.slice(0, length);

return finalPassword;
};
generateEl.addEventListener('click', () => {
const length = +lengthEl.value;
const hasLower = lowercaseEl.checked;
const hasUpper = uppercaseEl.checked;
const hasNumber = numbersEl.checked;
const hasSymbol = symbolsEl.checked;

resultEl.innerText = generatePassword(
hasLower,
hasUpper,
hasNumber,
hasSymbol,
length,
);
});
83 changes: 83 additions & 0 deletions Source-Code/PasswordGenerator/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

* {
box-sizing: border-box;
}

body {
background: linear-gradient(to right, #e762ea, #b3f4f0);
color: rgb(255, 255, 255);
font-family: 'Courier New', Courier, monospace;
font-weight: 500;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
padding: 10px;
margin: 0;
}

h2 {
margin: 10px 0 20px;
text-align: center;
font-weight: 1000;
}

.container {
background-color: #2bd3df;
box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
padding: 20px;
width: 350px;
max-width: 100%;
}

.result-container {
background-color: rgba(0, 0, 0, 0.247);
display: flex;
justify-content: flex-start;
align-items: center;
position: relative;
font-size: 18px;
font-weight: bold;
letter-spacing: 1px;
padding: 12px 10px;
height: 50px;
width: 100%;
}

.result-container #result {
word-wrap: break-word;
max-width: calc(100% - 40px);
}

.btn {
border: none;
background-color: #2c085c;
color: #fff;
font-size: 16px;
padding: 8px 12px;
cursor: pointer;
}

.result-container .btn {
position: absolute;
top: 5px;
right: 5px;
width: 40px;
height: 40px;
font-size: 20px;
}

.btn-large {
display: block;
width: 100%;
}

.setting {
display: flex;
justify-content: space-between;
align-items: center;
margin: 15px 0;
}

0 comments on commit 5bc3c4a

Please sign in to comment.