-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (58 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Reset Password Template</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="img/forgot-password.ico"/>
<meta name="author" content="Yuli Petrilli">
<meta name="description" content="Free recover password template made with Bootstrap 5">
<!-- / Bootstrap Core -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- / FontAwesome -->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!-- / Custom style -->
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<main>
<div class="form-main-container">
<div class="form-wrapper">
<div class="form-header">
<span class="form-title">
Reset Your Password
</span>
</div>
<form class="form-content">
<div class="input-wrapper">
<div class="input-group">
<input class="form-control" type="password" placeholder="New Password" id="password" required>
<span class="form-control-focus"></span>
<div class="input-group-addon" onclick="passwordVisibility();">
<i class="fa fa-eye" id="showPass"></i>
<i class="fa fa-eye-slash d-none" id="hidePass"></i>
</div>
</div>
</div>
<div class="input-wrapper">
<div class="input-group">
<input class="form-control" type="password" placeholder="Repeat Password" id="repeatPassword" required>
<span class="form-control-focus"></span>
</div>
</div>
<button class="button-style w-100">
Save
</button>
<div class="link-wrapper mt-4">
<a href="recover_username.html" class="txt-style2">
<strong>Forgot your username?</strong>
</a>
</div>
<p class="txt-style1 mt-5">Nothing lost? <a class="txt-style2" href="#"><strong>Go back to Login</strong></a></p>
</form>
</div>
</div>
</main>
<script src="js/password-visibility.js"></script>
</body>
</html>