<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Forgot Password</title>
    <style>
      body { font-family: Arial, sans-serif; margin: 0; padding: 0;
      background-color: #f5f5f5; } .container { max-width: 600px; margin: 20px
      auto; background-color: #fff; padding: 40px; border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } h1 { color: #333; margin-top:
      0; } p { color: #666; margin-bottom: 20px; } .btn { display: inline-block;
      background-color: #354bf1; color: #fff; text-decoration: none; padding:
      10px 20px; border-radius: 4px; transition: background-color 0.3s; }
      .btn:hover { background-color: #354bf1; } .footer { margin-top: 20px;
      font-size: 12px; color: #999; }
    </style>
  </head>
  <body>
    <div class="container">
      <h1>Forgot Your Password?</h1>
      <p>No worries! Click the button below to reset your password.</p>
      <a
        href="<%- baseUrl %>/confirm-password/<%- code %>"
        class="btn"
        style="color: white !important;"
      >Reset Password</a>
      <p>If you didn't request a password reset, you can safely ignore this
        email.</p>
      <div class="footer">
        <p>This email was sent by <b>Housepin</b>.</p>
        <p>You are receiving this email because you requested a password reset
          or you are a registered user. If you did not request a password reset,
          please disregard this email.</p>
        <p>Contact us at <b>support@buyassets.com</b> for any assistance.</p>
      </div>
    </div>
  </body>
</html>