Skip to content

Commit 22c8646

Browse files
committed
Update index.html
1 parent 6081f9b commit 22c8646

File tree

1 file changed

+38
-38
lines changed

1 file changed

+38
-38
lines changed

index.html

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
3+
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Password Generator</title>
@@ -11,48 +11,48 @@
1111
<link rel="icon" type="image/png" sizes="32x32" href="site-data/favicon-32x32.png">
1212
<link rel="icon" type="image/png" sizes="16x16" href="site-data/favicon-16x16.png">
1313
<link rel="manifest" href="site-data/site.webmanifest">
14-
</head>
15-
<body>
14+
</head>
15+
<body>
1616
<header>
17-
<h1>Password Generator</h1>
18-
<div class="header-buttons">
19-
<a href="https://github.com/ThatSINEWAVE/Discord-Identity" target="_blank" class="btn btn-header">
20-
<i class="fab fa-github"></i> GitHub </a>
21-
<a href="https://ko-fi.com/thatsinewave" target="_blank" class="btn btn-header">
22-
<i class="fas fa-heart"></i> Support </a>
23-
<a href="https://discord.gg/2nHHHBWNDw" class="btn" target="_blank">
24-
<i class="fab fa-discord"></i> Discord</a>
25-
</div>
17+
<h1>Password Generator</h1>
18+
<div class="header-buttons">
19+
<a href="https://github.com/ThatSINEWAVE/Discord-Identity" target="_blank" class="btn btn-header">
20+
<i class="fab fa-github"></i> GitHub </a>
21+
<a href="https://ko-fi.com/thatsinewave" target="_blank" class="btn btn-header">
22+
<i class="fas fa-heart"></i> Support </a>
23+
<a href="https://discord.gg/2nHHHBWNDw" class="btn" target="_blank">
24+
<i class="fab fa-discord"></i> Discord </a>
25+
</div>
2626
</header>
2727
<main>
28-
<div class="container">
29-
<label for="length">Password Length (8-64):</label>
30-
<input type="number" id="length" min="8" max="64" value="8" style="width: 60px;">
31-
<label for="numPasswords">Number of Passwords:</label>
32-
<input type="number" id="numPasswords" min="1" max="4294967295" value="1" style="width: 60px;">
33-
<div>
34-
<input type="checkbox" id="includeNumbers" checked>
35-
<label for="includeNumbers">Include Numbers</label>
36-
</div>
37-
<div>
38-
<input type="checkbox" id="includeMixedCase" checked>
39-
<label for="includeMixedCase">Mixed Case</label>
40-
</div>
41-
<div>
42-
<input type="checkbox" id="includeSymbols">
43-
<label for="includeSymbols">Include Symbols</label>
44-
</div>
45-
<button onclick="generatePasswords()" id="generateButton">Generate</button>
46-
<button onclick="saveSettings()">Save Settings</button>
47-
<button onclick="downloadPasswords()" id="downloadButton" disabled>Download Passwords</button>
48-
<div id="output"></div>
28+
<div class="container">
29+
<label for="length">Password Length (8-64):</label>
30+
<input type="number" id="length" min="8" max="64" value="8" style="width: 60px;">
31+
<label for="numPasswords">Number of Passwords:</label>
32+
<input type="number" id="numPasswords" min="1" max="4294967295" value="1" style="width: 60px;">
33+
<div>
34+
<input type="checkbox" id="includeNumbers" checked>
35+
<label for="includeNumbers">Include Numbers</label>
36+
</div>
37+
<div>
38+
<input type="checkbox" id="includeMixedCase" checked>
39+
<label for="includeMixedCase">Mixed Case</label>
4940
</div>
41+
<div>
42+
<input type="checkbox" id="includeSymbols">
43+
<label for="includeSymbols">Include Symbols</label>
44+
</div>
45+
<button onclick="generatePasswords()" id="generateButton">Generate</button>
46+
<button onclick="saveSettings()">Save Settings</button>
47+
<button onclick="downloadPasswords()" id="downloadButton" disabled>Download Passwords</button>
48+
<div id="output"></div>
49+
</div>
5050
</main>
5151
<footer>
52-
<div class="footer-content">
53-
<div>MIT LICENSE &copy; 2024 - ThatSINEWAVE</div>
54-
</div>
52+
<div class="footer-content">
53+
<div>MIT LICENSE &copy; 2024 - ThatSINEWAVE</div>
54+
</div>
5555
</footer>
5656
<script src="script.js"></script>
57-
</body>
58-
</html>
57+
</body>
58+
</html>

0 commit comments

Comments
 (0)