-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (78 loc) · 3.39 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
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PassForge | Generate Unbreakable Password </title>
<link rel="icon" href="imgs/Logo.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<!-- ----- FONT CDN FILE ---- -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap" rel="stylesheet">
<!-- ----- CSS FILE LINGING ----- -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- ---- OUTPUT SCREEN ---- -->
<div class="background">
<div class="spinner"></div>
<div class="generator">
<div id="heading">
<img src="imgs/Logo.png" alt="">
<h1>assForge</h1>
</div>
<div class="password">
<input type="text" value="Let's Generate.. -> ">
<button><i class="fa-regular fa-copy"></i></button>
</div>
<div class="range">
<input type="range" min="4" max="32" value="4" step="1" id="customRange">
<span id="valueDisplay">4</span>
</div>
<div id="optain-container">
<div class="options">
<div class="btn-circle" id="lowercaseCb">
<div class="option">
<label >
<span>a - z</span>
</label>
</div>
</div>
<div class="btn-circle" id="uppercaseCb">
<div class="option">
<label>
<span>A - Z</span>
</label>
</div>
</div>
<div class="btn-circle" id="digitsCb">
<div class="option">
<label>
<span>0 - 9</span>
</label>
</div>
</div>
<div class="btn-circle" id="specialsCb">
<div class="option">
<label>
<span>! @ $ # % ^</span>
</label>
</div>
</div>
</div>
</div>
<button class="generate">Generate <i class="fa-solid fa-arrow-right"></i></button>
<div id="social-section">
<a href="https://github.com/ajmalfaris11" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="https://twitter.com/AjmalFarisX11" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://www.linkedin.com/in/ajmal-faris-31b0a22b5/" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>