-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
151 lines (146 loc) · 2.7 KB
/
App.js
File metadata and controls
151 lines (146 loc) · 2.7 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
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
const alfas = [
"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",
];
const numerics = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
const specialChars = [
"~",
"`",
"!",
"@",
"#",
"$",
"%",
"^",
"&",
"*",
"(",
")",
"_",
"-",
"+",
"=",
"{",
"[",
"}",
"]",
",",
"|",
":",
";",
"<",
">",
".",
"?",
"/",
];
let passwordEl1 = document.getElementById("password1");
let passwordEl2 = document.getElementById("password2");
let copyEl = document.getElementById("copy");
let copyEl2 = document.getElementById("copy2");
let val = 15;
let container = document.querySelector(".container");
document.getElementById("toggler").addEventListener("change", (event) => {
event.target.checked
? container.removeAttribute("data-theme")
: container.setAttribute("data-theme", "dark");
});
function passwordGenerator() {
let numericEl = document.getElementById("numeric");
let alfaEl = document.getElementById("alfa");
let specialCharEl = document.getElementById("special-char");
let chars = [];
let checkMessage = document.getElementById("check-box-message");
if (!numericEl.checked && !alfaEl.checked && !specialCharEl.checked) {
checkMessage.textContent = "Check at least one type!";
return 0;
}
if (numericEl.checked) {
chars = chars.concat(numerics);
checkMessage.textContent = "";
}
if (alfaEl.checked) {
chars = chars.concat(alfas);
checkMessage.textContent = "";
}
if (specialCharEl.checked) {
chars = chars.concat(specialChars);
checkMessage.textContent = "";
}
passwordEl1.value = "";
passwordEl2.value = "";
copyEl.style.color = "white";
copyEl2.style.color = "white";
for (let i = 0; i < val; i++) {
let char1 = chars[Math.floor(Math.random() * chars.length)];
let char2 = chars[Math.floor(Math.random() * chars.length)];
passwordEl1.value += char1;
passwordEl2.value += char2;
}
}
function copyToClipboard() {
alert(passwordEl1);
}
document.querySelector("#copy").addEventListener("click", copy);
document.querySelector("#copy2").addEventListener("click", copy);
function copy() {
var copyText = document.getElementById("password1").value;
navigator.clipboard.writeText(copyText).then(() => {
alert("Copied to clipboard");
});
}
function change_value(e) {
val = document.getElementById("main").value;
display = document.getElementById("value_display");
display.textContent = val;
}