-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (33 loc) · 1017 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=, initial-scale=1.0" />
<!-- <link rel="stylesheet" href="src/style.css" /> -->
<title>Password Generator</title>
</head>
<body>
<main class="container">
<header role="heading">
<h1>Generate a <span> random password</span></h1>
<p>Never use an insecure password again.</p>
</header>
<section role="region">
<button id="btn">Generate Password</button>
<hr />
<div class="blank-span">
<div class="span-container">
<span id="span-1"></span>
<span class="copied"></span>
</div>
<div class="span-container">
<span id="span-2"></span>
<span class="copied"></span>
</div>
</div>
</section>
</main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>