This repository was archived by the owner on Jun 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.41 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.41 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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="ruddernation,Ruddernation Designs,password generater,generater,password" />
<meta name="keywords" content="ruddernation,Ruddernation Designs,password generater,generater,password" />
<meta name="author" content="Ruddernation Designs" />
<meta name="Copyright" content="Ruddernation Designs"/>
<link rel="stylesheet" href="css/style.css" />
<title>Random Password Generator</title>
</head>
<body>
<h2>Random Password Generator</h2>
<h4>It generates password up to 30 characters long, Using the characters below<br>
0123456789abcdefghijklmnopqrstuvwxyz!@#$%^&*([]){}~:;<>?/\|\"ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
If you'd like more characters or another language(s) added then please <a href="mailto:contact@ruddernation.com">contact</a> me.</h4>
</header>
<br>
<p>
<form name="password">
<input type="text" class="bar" name="password" placeholder="Create password" id="password" readonly>
<br>
<input type="button" class="button"onclick="genPassword()" value="Generate" />
<input type="button" class="button" onclick="copyPassword()" value="Copy" />
</p>
</form>
<script src="js/pwdgn.js"></script>
</body>
</html>