-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (79 loc) · 4.19 KB
/
index.html
File metadata and controls
88 lines (79 loc) · 4.19 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
<!DOCTYPE html>
<html lang="en" itemscope itemtype="http://schema.org/WebApplication">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Passify - Secure Password Generator Tool | passify.sek4.com</title>
<meta name="description" content="Create strong, customizable passwords with Passify - the free online password generator. Generate random, memorable, or PIN passwords securely.">
<meta name="keywords" content="password generator, secure passwords, random password, strong password, online password tool">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://passify.sek4.com/">
<link rel="stylesheet" href="/css/styles.css">
<link rel="icon" type="image/png" href="/static/fav.png">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://passify.sek4.com/">
<meta property="og:title" content="Passify - Secure Password Generator Tool">
<meta property="og:description" content="Create strong, customizable passwords with Passify - the free online password generator.">
<meta property="og:image" content="https://passify.sek4.com/static/fav.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://passify.sek4.com/">
<meta property="twitter:title" content="Passify - Secure Password Generator Tool">
<meta property="twitter:description" content="Create strong, customizable passwords with Passify - the free online password generator.">
<meta property="twitter:image" content="https://passify.sek4.com/static/fav.png">
<!-- Schema.org markup for Google -->
<meta itemprop="name" content="Passify Password Generator">
<meta itemprop="description" content="Create strong, customizable passwords with Passify - the free online password generator.">
<meta itemprop="image" content="https://passify.sek4.com/static/fav.png">
</head>
<body>
<div class="container">
<h1>Choose password type</h1>
<div class="password-types">
<button class="type-btn active" data-type="random"><span>⚙️</span> Random</button>
<button class="type-btn" data-type="memorable"><span>💡</span> Memorable</button>
<button class="type-btn" data-type="pin"><span>#</span> PIN</button>
</div>
<h2>Customize your new password</h2>
<div class="divider"></div>
<div class="customization">
<div class="length-control">
<label for="length">Characters</label>
<div class="slider-container">
<input type="range" id="length" min="4" max="32" value="16">
<input type="number" id="length-value" min="4" max="32" value="16">
</div>
</div>
<div class="toggle-container">
<div class="toggle-row">
<div class="toggle-label">Numbers</div>
<div class="toggle-switch">
<label class="switch">
<input type="checkbox" id="numbers" checked>
<span class="slider round"></span>
</label>
</div>
<div class="toggle-label">Symbols</div>
<div class="toggle-switch">
<label class="switch">
<input type="checkbox" id="symbols">
<span class="slider round"></span>
</label>
</div>
</div>
</div>
</div>
<div class="divider"></div>
<h2>Generated password</h2>
<div class="password-output">
<input type="text" id="password" readonly>
</div>
<div class="action-buttons">
<button id="copy" class="btn primary">Copy password</button>
<button id="refresh" class="btn secondary">Refresh password</button>
</div>
</div>
<script src="/js/script.js"></script>
</body>
</html>