-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot_password.html
34 lines (34 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forgot Password</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link type="text/html" href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,600,700,800"
rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./Assets/css/forgot_password.css">
</head>
<body style="background: url('./Assets/images/Forgot Password_.png');">
<div class="form-css">
<form action="#">
<div class="form-group">
<label for="email" class="text">Ok let’s fetch you ya’ login details</label>
<input type="email" class="form-control mb-4 input-css shadow" placeholder=" Email Address " id="email" required>
</div>
<div>
<p class="have-acc">To make an Account. <a href="login.html">   Click Here. </a> </p>
</div>
<div>
<button type="submit" class="btn btn-edit mb-4 shadow">Proceed</button>
</div>
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
</body>
</html>