-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (61 loc) · 2.74 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
88
89
90
91
92
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="Online random password generator.">
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="stylesheet" media="screen,tv" href="css/style.css">
<title>mkpasswd.surge.sh</title>
</head>
<body>
<noscript>
<div style="color:#FC0000;background-color:#FFFFFF;text-align:center">
<p>Warning! It seems that JavaScript is not working in your browser. It could be that JavaScript is not supported, or JavaScript is disabled.</p>
<p>Please enable JavaScript. Some of the features on this website will not function properly with out javascript enabled.</p>
</div>
</noscript>
<!-- START header -->
<header>
<h1 class="header-title">mkpasswd.surge.sh</h1>
</header>
<!-- END header -->
<!-- START main -->
<main>
<div class="random-password">
<div class="password-container">
<input type="text" class="password" id="password" spellcheck="false" focus><div title="COPY" class="copy-svg-btn"></div>
</div>
<div class="copy-btn-box">
<button class="copy-btn" id="copy">Copy</button>
</div>
<form id="settings">
<div class="form-radio-btn">
<label for="lowercase"><input type="checkbox" name="lowercase" id="lowercase" checked>Lowercase</label>
<label for="uppercase"><input type="checkbox" name="uppercase" id="uppercase" checked>Uppercase</label>
<label for="numbers"><input type="checkbox" id="numbers" checked>Numbers</label>
<label for="symbols"><input type="checkbox" id="symbols" checked>Symbols</label>
</div>
<div class="passwd-length">
<input type="range" class="passwd-length-input" name="slider" min="8" max="32" step="1" value="8">
<span class="passwd-length-output">8</span>
</div>
<button type="button" class="generate-btn" id="generate">Generate Password</button>
</form>
</div>
</main>
<!-- END main -->
<!-- START footer -->
<div class="row">
<img class="page-image" src="images/page_image_1000.png" alt="mkpasswd decorative PNG image">
</div>
<footer>
<div class="diagonal">
</div>
<p><a href="https://brandonwallace.cc" target="_blank" rel="nonreferrer">Brandon Wallace</a> © <script>document.write(new Date().getFullYear());</script></p>
</footer>
<!-- END footer -->
<script src="js/script.js"></script>
</body>
</html>