-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<title>Password Generator</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/spcss">
<script src="https://cdn.jsdelivr.net/npm/password-generator/dist/password-generator.min.js"></script>
</head>
<body>
<h1>Password Generator</h1>
<p>This is a random password generator for rapid copy and paste password into your enviromnents.</p>
<pre><code id="mysql">MYSQL_PASSWORD=</code></pre>
<hr>
<a href="https://github.com/javanile/password/edit/main/index.html">Edit on GitHub</a>
<a href="https://github.com/javanile/password" target="_blank">
<img src="https://github.blog/wp-content/uploads/2008/12/forkme_right_green_007200.png?resize=149%2C149" style="position:absolute;top:0;right:0;border:0;" width="149" height="149" class="attachment-full size-full" alt="Fork me on GitHub" data-recalc-dims="1" />
</a>
<script type="text/javascript">
document.getElementById('mysql').innerHTML += generatePassword(32, false);
</script>
</body>
</html>