Reset password form
How to Create Reset password form using html | bootstrap
👇ஃ Create a Reset password form with source codeஃ
Source Code :-
<html>
<head>
<title>Reset password</title>
<link rel="stylesheet"
href="css/bootstrap.css">
</head>
<body>
<div class="col-md-4 bg-white
shadow-lg mx-auto mt-4 p-3" >
<form>
<h2 class="text-center
text-primary">Reset Password</h2>
<label>New Password</label>
<input type="password"
name="psw" placeholder="Enter New Password"
class="form-control">
<label>Confirm Password</label>
<input type="password" name="ps"
placeholder="Confirm Password"
class="form-control">
<div class="text-center mt-3">
<input type="submit" name="b1"
class="btn btn-primary"
value="Forgot Password">
</form>
</div>
</body>
</html>
Post a Comment