This repository was archived by the owner on Feb 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
174 lines (169 loc) · 7 KB
/
index.html
File metadata and controls
174 lines (169 loc) · 7 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Tools - learn more about network safety, safe password generator, and scam-email quiz</title>
<link rel="icon" type="image/x-icon" href="logo.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<div class="sticky-top">
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#home">Password Tools</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation" onclick="expandOversizedMenu()">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#info">Info</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#tool">Making Passwords</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#practice">Practice</a>
</li>
<li class="nav-item">
<a id="githubLink" class="nav-link" href="https://github.com/repodevcode/Password-Tools">😺GITHUB</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<h1 id="home"><img src="logo.png" height="71px" width="71px"/>Password Tools [open-source project]</h1>
<div id="info"></div>
Password management is really important. It helps remember your passwords.
</br>
Some people don't know how to do that. That's why I created this site - to help them!
</br>
Before, I had trouble managing passwords: where to put them, how to design that paper.
</br>
Now, that I found an awesome orginizer my passwords are safe, and orginized. Today, i'll share that orginizer with you.
<br>
<a href="https://www.thepurplepumpkinblog.co.uk/wp-content/uploads/2013/08/password-reminder-printable_blue.png">Sheet (click here to open it)</a>
That worksheet really helped me. Remember to keep your passwords in a safe place and DO NOT keep your password sheet outdated.
</br>
DO NOT use that sheet on computer. PRINT IT OUT.
<br>
<p>And that's all you need to know about password management. Good Luck!</p>
<img src="password-sheet.png" id="sheet" alt="Password Sheet" width="600px"/>
<br>
<h4><b><i>(Image from www.thepurplepumpkinblog.co.uk)</i></b></h4>
<hr class="rounded thick">
<br>
<div class="div">
<h1 id="tool">Create a password</h1>
<br>
<input type="text" id="password_chosen_input" class="form-control" readonly/>
<br>
<br>
<input type="button" value="New Password" onclick="createPassword()" id="new_password_button" class="btn btn-success"/>
<br>
<br>
<br>
<br>
</div>
<hr class="rounded thick">
<h1 id="practice">Practice</h1>
<h3>Scammers are everywhere trying to steal your information.
<br>
This quiz will help you Learn to identify scammer emails.
</h3>
<br>
<div class="container">
<div class="row">
<div class="col">
<input type="checkbox" class="form-check-input" readonly/>
</div>
<div class="col">
<p>⭐</p>
</div>
<div class="col-3">
<p id="question"></p>
</div>
<div class="col-4">
<p id="subject"></p>
</div>
<div class="col">
<p id="today">Today</p>
</div>
</div>
</div>
<br>
<br>
<button onclick="answered(this)" class="btn btn-danger" id="1">Scam</button> <button onclick="answered(this)" class="btn btn-primary" id="2">Not Scam</button>
<div id="feedback" class="correctAnswer" style=" opacity: 0">
<h1>✔️Correct!</h1>
<h3>You are hard to scam!</h3>
</div>
<div id="feedbackInc" class="incorrectAnswer" style=" opacity: 0">
<h1>❌Incorrect...</h1>
<h3>No! Better practice...</h3>
</div>
</body>
<style>
#password_chosen_input {
width: 185px;
}
#link_pass_management {
font-size: 18px
}
.showResizeMenu{
display: block !important;
}
#githubLink {
position: absolute;
right: 2%;
color: darkblue;
font-weight: bold
}
body {
font-family: 'Open Sans', sans-serif;
padding-left: 22px;
}
hr.thick {
height: 5px;
background-color: black;
border: none;
}
.container {
max-width: 900px;
margin-left: unset;
background-color: #d6d4d4;
}
.incorrectAnswer {
animation: fadeInAnimation ease 0.5s;
background: #ffe8e8;
width: 311px;
text-align: center;
height: 115px;
border: #d30000 7px solid;
left: 415px;
top: 169px;
position: sticky;
}
.correctAnswer {
animation: fadeAnimation ease 1s;
background: lightgreen;
width: 311px;
text-align: center;
height: 115px;
border: #328832 7px solid;
left: 415px;
position: sticky;
top: 169px;
}
</style>
<script src="script.js"></script>
</html>