-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (68 loc) · 3.29 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
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.js"></script>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="ui middle aligned center aligned grid" style="height:100%">
<div class="column">
<h2 class="ui teal header">
<img src="logo.png" alt="">
<div class="content">Password Generator</div>
</h2>
<div class="ui large form">
<div class="ui stacked segment">
<div class="field">
<label for="">Password length</label>
<div class="fields">
<div class="twelve wide field">
<div class="ui teal slider"></div>
</div>
<div class="four wide field">
<input type="number" id="length">
</div>
</div>
</div>
<div class="field">
<div class="ui right aligned toggle checkbox" id="includeLowercase" style="width:100%">
<input type="checkbox" checked="checked">
<label for="">Include lowercase letters</label>
</div>
</div>
<div class="field">
<div class="ui right aligned toggle checkbox" id="includeUppercase" style="width:100%">
<input type="checkbox" checked="checked">
<label for="">Include uppercase letters</label>
</div>
</div>
<div class="field">
<div class="ui right aligned toggle checkbox" id="includeNumbers" style="width:100%">
<input type="checkbox" checked="checked">
<label for="">Include numbers</label>
</div>
</div>
<div class="field">
<div class="ui right aligned toggle checkbox" id="includeSymbols" style="width:100%">
<input type="checkbox" checked="checked">
<label for="">Include symbols</label>
</div>
</div>
<div class="field">
<div class="ui action input">
<input type="text" id="password">
<button id="copyPassword" class="ui teal right labeled icon button">
<i class="copy icon"></i>
Copy
</button>
</div>
</div>
<div class="ui fluid large teal submit button" id="generatePassword">Generate Password</div>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>