-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Generator by Veljko</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<p class="title">Generate a</p>
<p class="title" id="green">random password</p>
<p>Never use an insecure password again.</p>
<button type="button" id="pw-btn" class="btn btn-success">Generate passwords</button>
<button type="button" id="save-btn" class="btn btn-success">Save passwords</button>
<button type="button" id="return-btn" class="btn btn-success">Return passwords</button>
<hr>
<div class="row">
<div id="pw-1" class="col-5 offset-1"></div>
<div id="pw-2" class="col-5 offset-1"></div>
</div>
<div class="row">
<div id="pw-3" class="col-5 offset-1"></div>
<div id="pw-4" class="col-5 offset-1"></div>
</div>
</main>
<script src="index.js"></script>
</body>
</html>