-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
170 lines (151 loc) · 2.67 KB
/
index.js
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
const characters = [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K",
"L",
"M",
"N",
"O",
"P",
"Q",
"R",
"S",
"T",
"U",
"V",
"W",
"X",
"Y",
"Z",
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"i",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"w",
"x",
"y",
"z",
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"~",
"`",
"!",
"@",
"#",
"$",
"%",
"^",
"&",
"*",
"(",
")",
"_",
"-",
"+",
"=",
"{",
"[",
"}",
"]",
",",
"|",
":",
";",
"<",
">",
".",
"?",
"/",
];
let pass1El = document.getElementById("pass1-el");
let pass2El = document.getElementById("pass2-el");
let passGenerated = false;
let clrBtnStatus = document.getElementById("clr-btn");
if (!passGenerated) {
clrBtnStatus.style.display = "none";
}
//Generate Password button functionality
function generatePass() {
if (!passGenerated) {
for (let i = 0; i < 15; i++) {
let randomizedPass1 = Math.floor(Math.random() * characters.length);
pass1El.textContent += characters[randomizedPass1];
}
for (let i = 0; i < 15; i++) {
let randomizedPass2 = Math.floor(Math.random() * characters.length);
pass2El.textContent += characters[randomizedPass2];
}
passGenerated = true;
clrBtnStatus.style.display = "";
}
}
//Clear button functionality
function clr() {
pass1El.textContent = "";
pass2El.textContent = "";
passGenerated = false;
clrBtnStatus.style.display = "none";
}
//To make the Password copied to clipboard when clicked
document.addEventListener("DOMContentLoaded", () => {
const pass1El = document.getElementById("pass1-el");
const pass2El = document.getElementById("pass2-el");
const copiedMessage = document.getElementById("copiedMessage");
function copyTextToClipboard(text) {
// Create a temporary textarea element to hold the text
const tempTextArea = document.createElement("textarea");
tempTextArea.value = text;
// Append the textarea to the body, select the text, and copy it
document.body.appendChild(tempTextArea);
tempTextArea.select();
document.execCommand("copy");
// Remove the temporary textarea
document.body.removeChild(tempTextArea);
// Show the "Text Copied" message
copiedMessage.style.display = "block";
// Hide the message after 2 seconds
setTimeout(() => {
copiedMessage.style.display = "none";
}, 2000);
}
pass1El.addEventListener("click", () => {
copyTextToClipboard(pass1El.innerText);
});
pass2El.addEventListener("click", () => {
copyTextToClipboard(pass2El.innerText);
});
});