Created
October 21, 2022 08:03
-
-
Save Octagon-simon/59642199cc4f51f5ea0fbc50e2d8eb47 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>Reset Your 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">RESET YOUR PASSWORD</h4> | |
<form method="post" action="/reset" style="max-width:500px;"> | |
<div class="mb-3"> | |
<label class="form-label">Email Address</label> | |
<input type="email" name="email" class="form-control" placeholder="[email protected]"> | |
</div> | |
<div class="mb-3"> | |
<button type="submit" class="btn btn-primary">Send Reset Link</button> | |
</div> | |
</form> | |
</section> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment