change password form
How to Create Reset password form using html | bootstrap
👇ஃ Create a Reset password form with source codeஃ
Source Code :-
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Registration</title>
<link rel="stylesheet" href="css/bootstrap.css">
</head>
<body class="">
<div class="col-md-4 bg-white shadow-lg mx-auto mt-3
p-3">
<h1 class="text-center text-primary">
Change Password
</h1>
<p class="text-danger text-center">
</p>
<form action="change-password.php" method="post">
<label>Old Password</label>
<input type="password" name="opwd" class="form-control mb-1"
required>
<label>New Password</label>
<input type="password" name="npwd" class="form-control mb-1"
required>
<label>Confirm Password</label>
<input type="password" name="cpwd" class="form-control mb-1"
required>
<div class="text-center">
<input type="submit" value="Change Password"
name="b1" class="btn btn-primary">
</div>
</form>
</div>
</body>
</html>
Post a Comment