<!DOCTYPE html>
<html>
  <head>
    <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
  </head>
  <body>
    <div style="width: 100%; max-width: 600px; margin: 0 auto; background-color: #ffffff; padding: 20px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);">
      <div style="text-align: center; padding: 10px 0;">
        <h1 style="margin: 0; font-size: 24px; color: #333333;">Password Reset Request</h1>
      </div>
      <div style="padding: 20px 0;">
        <p style="font-size: 16px; color: #555555; line-height: 1.5;">Hello <%= @user.full_name %>,</p>
        <p style="font-size: 16px; color: #555555; line-height: 1.5;">You recently requested to reset your password for your <%= ConfigHelper.app_credentials['name'] %> account. Use the code below to complete the process:</p>
        <div style="display: block; width: fit-content; margin: 20px auto; padding: 10px 20px; font-size: 24px; font-weight: bold; color: #ffffff; background-color: #4CAF50; border-radius: 5px;">
          <%= @otp.respond_to?(:code) ? @otp.code : @otp %>
        </div>
        <% if @otp.respond_to?(:expiry_minutes) %>
          <p style="font-size: 16px; color: #555555; line-height: 1.5;">This code will expire in <%= @otp.expiry_minutes %> minutes.</p>
        <% else %>
          <p style="font-size: 16px; color: #555555; line-height: 1.5;">This code will expire soon.</p>
        <% end %>
        <p style="font-size: 16px; color: #555555; line-height: 1.5;">If you did not request a password reset, please ignore this email or contact support at <%= ConfigHelper.mailer_credentials['support_address'] %> if you have questions.</p>
        <p style="font-size: 16px; color: #555555; line-height: 1.5;">Best regards,<br>
        The <%= ConfigHelper.app_credentials['name'] %> Team</p>
      </div>
      <div style="text-align: center; padding: 20px 0; font-size: 14px; color: #aaaaaa;">
        <p>&copy; <%= Time.now.year %> <%= ConfigHelper.app_credentials['name'] %> All rights reserved.</p>
      </div>
    </div>
  </body>
</html> 