-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (75 loc) · 4.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="apple-touch-icon" sizes="180x180" href="public/assets/image/icons/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="public/assets/image/icons/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="public/assets/image/icons/favicon_io/favicon-16x16.png">
<link rel="manifest" href="manifest.json">
<link rel="manifest" href="public/assets/image/icons/favicon_io/site.webmanifest">
<script src="https://kit.fontawesome.com/291451fd76.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="public/assets/style/bootstrap.css">
<link rel="stylesheet" type="text/css" href="public/assets/style/style.css">
<title>Password Portal</title>
</head>
<body class="container">
<main class="m-3 bg-info jumbotron text-center">
<header class="">
<h1 class="display-4">CR3@+e A p@$$W0rd</h1>
</header>
<section class="text-center">
<div class="">
<p class="text-center" readonly id="password" placeholder="Password"
aria-label="Generated Password"></p>
<p class="hsimp"></p>
<h2 id="counter"></h2>
<fieldset>
<p>Num of characters: <span id="sliderCounter"></span></p>
<label for="customRange1">Use slider to pick number of characters?</label>
<input type="range" class="custom-range" id="customRange1" min="8" max="30" value="8">
</fieldset>
</div>
<div class="row justify-content-center">
<div class="col-sm-12 col-md-3 custom-control custom-switch">
<input type="checkbox" class="custom-control-input" id="customSwitch1">
<label class="custom-control-label" for="customSwitch1">ABC?</label>
</div>
<div class="col-sm-12 col-md-3 custom-control custom-switch">
<input type="checkbox" class="custom-control-input" id="customSwitch2">
<label class="custom-control-label" for="customSwitch2">abc?</label>
</div>
<div class="col-sm-12 col-md-3 custom-control custom-switch">
<input type="checkbox" class="custom-control-input" id="customSwitch3">
<label class="custom-control-label" for="customSwitch3">123?</label>
</div>
<div class="col-sm-12 col-md-3 custom-control custom-switch">
<input type="checkbox" class="custom-control-input" id="customSwitch4">
<label class="custom-control-label" for="customSwitch4">!@#$%?</label>
</div>
</div>
</section>
<div class="row justify-content-center">
<button type="button" id="generate" class="btn btn-primary">Create password!</button>
<button type="button" id="reset" class="btn btn-primary btn-sm btn-warning">Reset</button>
</div>
<footer>
<p class="text-left"><i class="fab fa-angellist fa-2x"></i></p>
<p class="text-right"><span class="iconify" data-icon="teenyicons:netlify-outline"
data-inline="false"></span></p>
</footer>
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-key"
viewBox="0 0 16 16">
<path
d="M0 8a4 4 0 0 1 7.465-2H14a.5.5 0 0 1 .354.146l1.5 1.5a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0L13 9.207l-.646.647a.5.5 0 0 1-.708 0L11 9.207l-.646.647a.5.5 0 0 1-.708 0L9 9.207l-.646.647A.5.5 0 0 1 8 10h-.535A4 4 0 0 1 0 8zm4-3a3 3 0 1 0 2.712 4.285A.5.5 0 0 1 7.163 9h.63l.853-.854a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.793-.793-1-1h-6.63a.5.5 0 0 1-.451-.285A3 3 0 0 0 4 5z" />
<path d="M4 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0z" />
</svg>
</main>
<script src="https://code.iconify.design/1/1.0.7/iconify.min.js"></script>
<script src="public/assets/JS/hsimp.min.js"></script>
<script src="public/assets/JS/script.js"></script>
</body>
</html>