Created
October 21, 2022 08:04
-
-
Save Octagon-simon/68b507797a0755e4f7702aff0266c1ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Enter New Password</title> | |
<!-- Google Fonts --> | |
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" /> | |
<!-- MDB --> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/5.0.0/mdb.min.css" rel="stylesheet" /> | |
<style> | |
.body{ | |
font-family: "Roboto", sans-serif; | |
} | |
.container{ | |
box-shadow: 0px 0px 8px #ddd | |
} | |
</style> | |
</head> | |
<body> | |
<section class="container p-4 mt-5" style="max-width:500px"> | |
<h4 class="text-center mb-4">ENTER NEW PASSWORD</h4> | |
<form method="post" action="/reset-pass" style="max-width:500px;"> | |
<div class="mb-3"> | |
<label class="form-label">New password</label> | |
<input type="password" name="pass" class="form-control" placeholder="*****"> | |
</div> | |
<div class="mb-3"> | |
<label class="form-label">Re-enter password</label> | |
<input type="password" name="conpass" class="form-control" placeholder="*****"> | |
</div> | |
<div class="mb-3"> | |
<button type="submit" class="btn btn-success">Reset</button> | |
</div> | |
</form> | |
</section> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment