-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 821 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
<html>
<head>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<dvi class="cont">
<h1 class="h1">Generate a</h1>
<br />
<h1 class="h2">random password</h1>
<button onclick="generatePass()">Generate password</button>
<!-- <hr class="new1" /> -->
<div class="line"></div>
<div class="password">
<div class="p1 p">
<p id="pass1-el"></p>
<span class="tooltip">Copy</span>
</div>
<div class="p2 p">
<p id="pass2-el"></p>
<span class="tooltip">Copy</span>
</div>
<p id="copiedMessage" class="copiedMessage">Copied to Clipboard!</p>
</div>
<button class="clr" id="clr-btn" onclick="clr()">Clear</button>
</dvi>
<script src="index.js"></script>
</body>
</html>