import * as React from "react"; import { Html, Head, Body, Container, Section, Text, Button, Hr, Tailwind, } from "@react-email/components"; interface ForgotPasswordEmailProps { username?: string; resetUrl?: string; userEmail?: string; } const ForgotPasswordEmail = (props: ForgotPasswordEmailProps) => { const { username, resetUrl, userEmail } = props; return ( {/* Header */}
Dental U Care Your Trusted Dental Care Partner
{/* Main Content */}
Reset Your Password Hello {username} We received a request to reset the password for your {userEmail} Dental U Care account. Don`t worry - it happens to the best of us! Click the button below to create a new password. {/* Reset Password Button */}
If the button above doesn`t work, you can also copy and paste this link into your browser: {resetUrl}
Important Security Information: • This reset link will expire in 1 hour for your security
• If you didn`t request this password reset, please ignore this email
• Your current password will remain unchanged until you create a new one
For your account security, we recommend choosing a strong password that includes a mix of letters, numbers, and special characters.

{/* Footer */}
Having trouble? Our support team is here to help at{" "} info@dentalucare.com {" "} or call us at (+63) 917-123-4567. Dental U Care Baltan Street, Barangay San Miguel Puerto Princesa, Palawan, Philippines © 2025 Dental U Care. All rights reserved.{" "} Unsubscribe
); }; export default ForgotPasswordEmail;