forked from PREETI-KHAITAN/Chat-Applcation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot-password.html
65 lines (55 loc) · 2.44 KB
/
forgot-password.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Macky-Reset-password</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.deep_purple-light_blue.min.css" />
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<header class="main-page">
<div class="logo">Macky</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a id="login-link" href="login.html">Login</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<div class="menu-toggle"><i class="fa fa-bars" aria-hidden="true"></i></div>
</header>
<div id="login-box">
<h3>Macky Reset Password</h3>
<p id="reset-error"></p>
<input id="reset-email-tf" type="email" placeholder="Email">
<button id="reset-btn" style="margin-top: 40px;">Reset Password</button>
<div id="reset-progress" class="mdl-progress mdl-js-progress mdl-progress__indeterminate"
style="margin-top: 50px; display: none;"></div>
</div>
<div id="login-box-mobile" style="height: 250px;">
<h3>Macky Reset Password</h3>
<p id="reset-error-mobile"></p>
<input id="reset-email-tf-mobile" type="email" placeholder="Email">
<button id="reset-btn-mobile" style="margin-top: 40px;">Reset Password</button>
<div id="reset-progress-m" class="mdl-progress mdl-js-progress mdl-progress__indeterminate"
style="margin-top: 50px; display: none;"></div>
</div>
<div class="toast">
<div id="toast-text">
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/7.15.5/firebase.js"></script>
<script src="Scripts/firebase.init.js"></script>
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<script src="index.js"></script>
</body>
</html>