<!DOCTYPE html>
<html>
<head>
<title> Home </title>
<meta charset="UTF-8">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<%- include('./parcials/cssLinks') %>
</head>
<body>
<%- include('./parcials/header') %>
<main>
<section class="register">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6 col-md-8 col-12 px-xl-5">
<h2 class="theme-h2">Reset Password</h2>
<p class="theme-p">Please enter your email to reset your password.</p>
<form action="/api/user/reset-password" method="post">
<div class="input-field mb-3">
<label for="">Email *</label>
<input name="email" type="email" required>
</div>
<button class="sendmail-btn theme-btn mt-3" type="submit">Verify</button>
</form>
</div>
</div>
</div>
</section>
</main>
<%- include('./parcials/footer') %>
<%- include('./parcials/scriptLinks') %>
</body>
</html>