-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunction.js
More file actions
63 lines (51 loc) · 2.36 KB
/
function.js
File metadata and controls
63 lines (51 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
const form = document.getElementById('passwordGen')
const characterAmountNumber = document.getElementById('characterAmountNumber');
const includeUpperCaseElement = document.getElementById('includeUpperCase');
const includeNumbersElement = document.getElementById('includeNumbers');
const includeSymbolsElement = document.getElementById('includeSymbols');
const passwordDisplay = document.getElementById('passwordDisplay')
const copy = document.getElementById('clipboard')
form.addEventListener("submit", function(e){
e.preventDefault()
const characterAmount = characterAmountNumber.value;
const includeUpperCase = includeUpperCaseElement.checked;
const includeNumbers = includeNumbersElement.checked;
const includeSymbols = includeSymbolsElement.checked;
const password = generatePassword(characterAmount, includeUpperCase, includeNumbers, includeSymbols)
passwordDisplay.innerText = password
} )
const UPPER_CHAR_CODES = arrayFromLowToHigh(65,90)
const LOWER_CHAR_CODES = arrayFromLowToHigh(97,122)
const NUMBER_CHAR_CODES = arrayFromLowToHigh(48,57)
const SYMBOL_CHAR_CODWS =arrayFromLowToHigh(33,47).concat(
arrayFromLowToHigh(58,64)).concat(arrayFromLowToHigh(91,96)).concat(arrayFromLowToHigh(123,126))
function generatePassword (characterAmount, includeUpperCase, includeNumbers, includeSymbols) {
var charCodes = LOWER_CHAR_CODES
if(includeUpperCase) charCodes = charCodes.concat(UPPER_CHAR_CODES)
if(includeNumbers) charCodes = charCodes.concat(NUMBER_CHAR_CODES)
if(includeSymbols) charCodes = charCodes.concat(SYMBOL_CHAR_CODWS)
const passwordCharacters = []
for (let i = 0; i <characterAmount; i++) {
const characterCode = charCodes[Math.floor(Math.random() * charCodes.length)]
passwordCharacters.push(String.fromCharCode(characterCode))
}
return passwordCharacters.join('')
}
function arrayFromLowToHigh(low, high) {
const array =[]
for (let i = low; i<= high; i++) {
array.push(i)
}
return array
}
copy.addEventListener("click", function(){
const textArea = document.createElement('textarea')
const passwordEL = passwordDisplay.innerText
if(!passwordEL) return ;
textArea.value = passwordEL;
document.body.appendChild(textArea)
textArea.select()
document.execCommand("copy");
textArea.remove()
alert("password copied");
})