-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (86 loc) · 3.96 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>solnvictus: password generator</title>
<link rel="icon" href="https://raw.githubusercontent.com/dantebertuzzi/solnvictus/main/favicon.png" type="image/png">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="dns-prefetch" href="//www.google-analytics.com">
<meta name="description" content="solnvictus: fast and strong password generator">
<meta name="keywords" content="password generator, secure passwords, password strength, random password, password manager, password security, password complexity, passphrase generator, online password generator">
<meta property="og:type" content="website">
<meta property="og:title" content="solnvictus: fast and strong password generator">
<meta property="og:description" content="solnvictus: fast and strong password generator.">
<meta property="og:image" content="https://raw.githubusercontent.com/dantebertuzzi/solnvictus/main/logo_300x.png">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QVZW7CXL2N"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QVZW7CXL2N');
</script>
<style>
body {
margin: 0;
height: 100vh;
width: 100vw;
overflow: hidden;
position: relative;
overflow-y: auto;
}
canvas {
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
</style>
</head>
<body>
<canvas id="canv"></canvas>
<div class="content-container">
<header>
<div class="logo-container">
<img src="https://raw.githubusercontent.com/dantebertuzzi/solnvictus/main/logo_300x.png" alt="Logo do Site" class="logo" id="siteLogo">
</div>
<div class="phrase-container">
<p class="phrase"><em><strong>Solnvictus password generator</strong></em></p>
</div>
</header>
<main>
<div id="passwordOptions" class="centered-container">
<label for="lengthOption">Password length:</label>
<input type="range" id="lengthOption" min="3" max="100" value="8" oninput="updateLengthDisplay(this.value)">
<span id="lengthDisplay">8</span>
<label for="specialCharsOption">Include special characters:</label>
<input type="checkbox" id="specialCharsOption">
<label for="numbersOption">Include numbers:</label>
<input type="checkbox" id="numbersOption" checked>
<label for="uppercaseOption">Include uppercase letters:</label>
<input type="checkbox" id="uppercaseOption" checked>
<label for="lowercaseOption">Include lowercase letters:</label>
<input type="checkbox" id="lowercaseOption" checked>
<label for="excludeCharsOption">Exclude characters:</label>
<input type="text" id="excludeCharsOption" placeholder="Ex: abc123">
<label for="quantityOption">Number of passwords:</label>
<input type="number" id="quantityOption" min="1" max="10" value="1">
</div>
<button id="generatePasswordButton">Generate Password</button>
<div id="passwordsContainer" class="centered-container passwords-container">
</div>
<footer class="footer">
<p>© 2024 All rights reserved.</p>
</footer>
</main>
</div>
<script src="script.js"></script>
<script>
document.addEventListener('contextmenu', function(event) {
event.preventDefault();
});
</script>
</body>
</html>