2025-08-09 17:36:35 +02:00
|
|
|
<!DOCTYPE html>
|
Fix email template compatibility and enhance user dashboard
- Convert all email templates to table-based layouts for compatibility with Outlook, Gmail, Apple Mail, etc.
- Use only inline CSS and email-safe properties
- Fix welcome.hbs, verification.hbs, password-reset.hbs, dues-reminder.hbs, test.hbs templates
- Enhanced user dashboard with complete member information (Member ID, registration date, dues status, etc.)
- Added proper loading states and error handling for member data
- Improved member profile page with comprehensive information display
- Fixed missing wiring information in user and profile screens as requested
2025-08-11 16:26:51 +02:00
|
|
|
<html lang="en">
|
2025-08-09 17:36:35 +02:00
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
Fix email template compatibility and enhance user dashboard
- Convert all email templates to table-based layouts for compatibility with Outlook, Gmail, Apple Mail, etc.
- Use only inline CSS and email-safe properties
- Fix welcome.hbs, verification.hbs, password-reset.hbs, dues-reminder.hbs, test.hbs templates
- Enhanced user dashboard with complete member information (Member ID, registration date, dues status, etc.)
- Added proper loading states and error handling for member data
- Improved member profile page with comprehensive information display
- Fixed missing wiring information in user and profile screens as requested
2025-08-11 16:26:51 +02:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2025-08-09 17:36:35 +02:00
|
|
|
<title>Password Reset - MonacoUSA</title>
|
|
|
|
|
</head>
|
Fix email template compatibility and enhance user dashboard
- Convert all email templates to table-based layouts for compatibility with Outlook, Gmail, Apple Mail, etc.
- Use only inline CSS and email-safe properties
- Fix welcome.hbs, verification.hbs, password-reset.hbs, dues-reminder.hbs, test.hbs templates
- Enhanced user dashboard with complete member information (Member ID, registration date, dues status, etc.)
- Added proper loading states and error handling for member data
- Improved member profile page with comprehensive information display
- Fixed missing wiring information in user and profile screens as requested
2025-08-11 16:26:51 +02:00
|
|
|
<body style="margin: 0; padding: 0; font-family: Arial, sans-serif; background-color: #f4f4f4;">
|
|
|
|
|
<!-- Main Container -->
|
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #f4f4f4; padding: 20px 0;">
|
|
|
|
|
<tr>
|
|
|
|
|
<td align="center">
|
|
|
|
|
<!-- Email Container -->
|
|
|
|
|
<table width="600" cellpadding="0" cellspacing="0" border="0" style="background-color: #ffffff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.1);">
|
|
|
|
|
|
|
|
|
|
<!-- Header with Monaco Red Background -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="background-color: #a31515; padding: 30px; text-align: center;">
|
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
|
|
|
<tr>
|
|
|
|
|
<td align="center">
|
|
|
|
|
<img src="{{logoUrl}}" alt="MonacoUSA" width="80" height="80" style="border-radius: 8px; margin-bottom: 15px;">
|
|
|
|
|
<h1 style="color: #ffffff; font-size: 28px; font-weight: bold; margin: 0 0 8px 0;">Password Reset</h1>
|
|
|
|
|
<p style="color: #ffffff; font-size: 16px; margin: 0; opacity: 0.9;">Monaco - United States Association</p>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<!-- Main Content -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="padding: 40px 30px;">
|
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
|
|
|
|
|
|
|
|
<!-- Greeting -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="padding-bottom: 20px;">
|
|
|
|
|
<h2 style="color: #a31515; font-size: 20px; font-weight: bold; margin: 0;">Dear {{firstName}},</h2>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<!-- Main Message -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="padding-bottom: 30px;">
|
|
|
|
|
<p style="color: #333333; font-size: 16px; line-height: 1.6; margin: 0;">
|
|
|
|
|
We received a request to reset your password for your MonacoUSA Portal account.
|
|
|
|
|
</p>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<!-- Reset Button -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="padding-bottom: 30px; text-align: center;">
|
|
|
|
|
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 auto;">
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="background-color: #a31515; padding: 15px 30px; border-radius: 6px;">
|
|
|
|
|
<a href="{{resetLink}}" style="color: #ffffff; text-decoration: none; font-weight: bold; font-size: 16px; display: block;">
|
|
|
|
|
🔒 Reset Your Password
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<!-- Important Info -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="padding-bottom: 30px;">
|
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="background-color: #fff3cd; border-left: 4px solid #ffc107; padding: 20px; border-radius: 4px;">
|
|
|
|
|
<p style="color: #856404; font-size: 14px; font-style: italic; margin: 0 0 10px 0;">
|
|
|
|
|
<strong>Important:</strong> This password reset link will expire in 1 hour for security purposes.
|
|
|
|
|
</p>
|
|
|
|
|
<p style="color: #856404; font-size: 14px; margin: 0;">
|
|
|
|
|
For security reasons, this link can only be used once.
|
|
|
|
|
</p>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<!-- Security Notice -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="padding-bottom: 20px;">
|
|
|
|
|
<p style="color: #333333; font-size: 16px; line-height: 1.6; margin: 0;">
|
|
|
|
|
If you didn't request this password reset, please ignore this email. Your password will remain unchanged.
|
|
|
|
|
</p>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<!-- Footer -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="background-color: #f8f9fa; padding: 30px; text-align: center; border-top: 1px solid #e9ecef;">
|
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0" border="0">
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<h4 style="color: #333333; font-size: 18px; font-weight: bold; margin: 0 0 8px 0;">MonacoUSA Association</h4>
|
|
|
|
|
<p style="color: #666666; font-size: 14px; margin: 0 0 15px 0;">Connecting Monaco and the United States</p>
|
|
|
|
|
|
|
|
|
|
<!-- Links -->
|
|
|
|
|
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 auto;">
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="padding: 0 10px;">
|
|
|
|
|
<a href="https://portal.monacousa.org" style="color: #a31515; text-decoration: none; font-size: 14px;">Portal</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td style="padding: 0 10px; color: #cccccc;">|</td>
|
|
|
|
|
<td style="padding: 0 10px;">
|
|
|
|
|
<a href="mailto:info@monacousa.org" style="color: #a31515; text-decoration: none; font-size: 14px;">Contact Us</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td style="padding: 0 10px; color: #cccccc;">|</td>
|
|
|
|
|
<td style="padding: 0 10px;">
|
|
|
|
|
<a href="https://monacousa.org" style="color: #a31515; text-decoration: none; font-size: 14px;">Website</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
2025-08-09 17:36:35 +02:00
|
|
|
</body>
|
|
|
|
|
</html>
|