forked from ishant9805/FacebookClone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot_password.html
53 lines (50 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Reset Password</title>
<link rel="stylesheet" href="forgot_password_styles.css" class="css" />
</head>
<body>
<nav class="nav_bar">
<div class="nav_list">
<h3 class="title">facebook</h3>
<input
type="email"
name=""
class="inp_email"
id=""
placeholder="Email or Phone "
/>
<input
type="password"
name=""
class="inp_pwd"
id=""
placeholder="Password"
/>
<button class="log_btn">Log in</button>
<a href="forgot_password.html" target="_blank" class="forgotten_link">Forgotten account?</a>
</div>
</nav>
<div class="main">
<h3 class="header">Find Your Account</h3>
<hr class="hr hr1" />
<h5 class="info">
Please enter your email address or mobile number to search for your
account.
</h5>
<input
type="email"
class="input"
placeholder="Email address or phone number"
/>
<a href="index.html" class="can"
><button class="btn cancel" id="cancel">Cancel</button></a
>
<button class="btn search">Search</button>
</div>
</body>
<script></script>
</html>