-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforget.html
More file actions
37 lines (34 loc) · 1.25 KB
/
Copy pathforget.html
File metadata and controls
37 lines (34 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forget Account</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon-images/logo.png">
</head>
<body>
<div class="navbar">
<div class="image">
<img src="logos/logo.svg" alt="app1">
</div>
<div class="login2">
<input id="first" type="text" placeholder="Email or phone" required>
<input id="second" type="password" placeholder="Password" required>
<button id="button" type="button">Log in</button>
<a class="forget" href="forget.html">Forgotten account?</a>
</div>
</div>
<div class="container2">
<h3>Find Your Account</h3>
<p id="para">Please enter your email address or mobile number to search<br>for your account.</p>
<div class="email">
<input type="text" placeholder="Email address or mobile number" required id="text2">
<div class="buttons">
<a href="index.html"><button id="Cancel">Cancel</button></a>
<button id="Search">Search</button>
</div>
</div>
</div>
</body>
</html>