-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (83 loc) · 4.01 KB
/
Copy pathindex.html
File metadata and controls
101 lines (83 loc) · 4.01 KB
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
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no" />
<script src="https://unpkg.com/@popperjs/core@2/dist/umd/popper.min.js"></script>
<script src="https://unpkg.com/tippy.js@6/dist/tippy-bundle.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sortablejs@latest/Sortable.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/tippy.js@6/themes/light.css">
<link rel="stylesheet" href="style.css">
<script defer type="module" src="app.js"></script>
<title>Pass Generator</title>
</head>
<body>
<div class="app-container">
<div class="main">
<input type="hidden" class="isAdvance" name="isAdvance" >
<header class="app-head">
<div class="head">
<h1 class="notranslate">Pass-Gen by Mike</h1>
</div>
</header>
<div class="container">
<div class="pass-window" tabindex="0" role="button" aria-pressed="false">
<span class="notranslate password-reveal" data-tooltip="Copied to clipboard">Generate Your Password!</span>
</div>
<div class="history-container">
<ul class="notranslate history-ul"></ul>
</div>
<div class="edit">
<div class="abilities">
<div class="input-cont">
<span class="pass-length">Digits</span>
<label class="switch">
<input type="checkbox" name="checkbox" id="digit">
<span class="slider round"></span>
</label>
</div>
<div class="input-cont">
<span class="pass-length">Uppercase letters</span>
<label class="switch">
<input type="checkbox" name="checkbox" id="h-char">
<span class="slider round"></span>
</label>
</div>
<div class="input-cont">
<span class="pass-length">Lowercase letters</span>
<label class="switch">
<input type="checkbox" name="checkbox" id="m-char">
<span class="slider round"></span>
</label>
</div>
<div class="input-cont">
<span class="pass-length">Special characters</span>
<label class="switch">
<input type="checkbox" name="checkbox" id="s-char">
<span class="slider round"></span>
</label>
</div>
</div>
</div>
<div class="advance-mode-container">
<div class="choose-content-container"></div>
<div class="draggble-content">
<ul id="items"></ul>
</div>
</div>
<div class="pass-length-container">
<div class="input-cont">
<span class="pass-length">Pass length (max: 20)</span>
<input type="number" name="number"
min="1" max="20" value="18" step="1" placeholder="" id="how-num">
</div>
</div>
<div class="generate-pass">
<button type="button" class="style-btn generate-btn">Generate</button>
<button type="button" class="style-btn advance-btn">Advanced</button>
</div>
</div>
</div>
</div>
</body>
</html>