-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
101 lines (93 loc) · 3.24 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
90
91
92
93
94
95
96
97
98
99
100
101
<!--start of html-->
<!DOCTYPE html>
<html lang="en">
<head>
<style>
/* style tag begins */
p {
font-size: 1rem;
font-weight: bold;
;
}
meter {
/*styling meter to align with text field*/
width: 100%;
height: auto;
}
</style>
<!--style tag ends-->
<!--making a division for logo and title-->
<div class="topnav" id="myTopnav">
<img src="aegis_logo.png" alt="logo" class="logo">
</div>
<!--end of logo and title division-->
<meta charset="UTF-8" />
<!--character set encoding specified-->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Aegis Password Strength Checker</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css" />
<!--styling and meter-->
<link rel="stylesheet" href="css/styles.css" />
<!--google fonts-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" />
<!-- MDB -->
<link rel="stylesheet" href="css/mdb.min.css" />
<!-- Custom styles -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body style="background-color:#6db0a7">
<!--making a container with form-->
<div class="mask d-flex align-items-center h-100" style="background-color: rgba(0, 0, 0, 0);">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-7 col-md-7">
</br></br></br></br></br>
<form class="bg-white rounded shadow-5-strong p-5">
<!--logo text-->
<center>
<p>
<style="font-size:0.5 rem;">Aegis Password Strength Checker
</style>
</p>
</center>
<!--logo text end-->
<!--input container-->
<div class="form-outline mb-6 input-container">
<!--user input -->
<input type="password" id="password" class="form-control" />
<label class="form-label" for="password">Password</label>
<!--font awesome eye for show/hide password-->
<i id="togglePassword" class="fas fa-eye eyeicon"></i>
</div>
</br>
<!-- 2 column grid layout for inline styling -->
<div class="row mb-6">
<!--password strength level tag-->
<div id="strength-level" class="text-center">
</div>
<!--warning tag-->
<div id="warning" class="text-center">
</div>
<!--suggestion tag-->
<div id="suggestion" class="text-center">
</div>
</div>
</br>
<!--meter tag for the password strength level-->
<meter max="4" id="password-strength"></meter>
</br>
</form>
</div>
</div>
</div>
</div>
<!--importing MDB, zxcvbn and password script js files-->
<script type="text/javascript" src="js/mdb.min.js"></script>
<script type="text/javascript" src="js/zxcvbn.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
<!--end of body-->
</html>
<!--end of html-->