<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Password Reset</title>
</head>
<body>
  <h1>Password Reset</h1>
  <p>Hello, click the link below to reset your password:</p>
  <a href="<%= resetLink %>">Reset Password</a>

  <!-- New password and confirm password input fields -->
  <form action="/reset-password/<%= resetCode %>" method="post">
    <label for="newPassword">New Password:</label>
    <input type="password" id="newPassword" name="newPassword" required>

    <label for="confirmPassword">Confirm Password:</label>
    <input type="password" id="confirmPassword" name="confirmPassword" required>

    <button type="submit">Set New Password</button>
  </form>
</body>
</html>