Forgot Password form
How to Create Forgot Password form using html | bootstrap
👇ஃ Create a Forgot Password Form with source codeஃ
Source Code :-
HTML ,bootstrap Source code:-
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content=
"width=device-width, initial-scale=1.0">
<link rel="stylesheet"
href="css/bootstrap.css">
<title>Forgot password</title>
</head>
<body>
<div class="col-md-4 bg-white shadow-lg
mx-auto mt-5 p-3">
<h3 class="text-center text-primary">
Forgot Password</h3>
<form>
<label>Email Address</label>
<input type="email" name="en"
class="form-control"
placeholder="seeta@gmail.com">
<div class="text-center">
<input type="submit" name="b1"
class="btn btn-danger mt-1"
value="Forgot Password"></div>
<div class="text-center">
<a href="login.php"
value="Back"
class="btn btn-primary mt-1">Back</a>
</div>
</Form>
</div>
</body>
</html>
Post a Comment