Spaces:
Sleeping
Sleeping
Claude Code - Backend Implementation Specialist
Add complete AI Todo Chatbot backend application
b93a6a5 | <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Password Reset</title> | |
| </head> | |
| <body style="margin: 0; padding: 0; font-family: Arial, sans-serif; background-color: #f4f4f4;"> | |
| <table width="100%" cellpadding="0" cellspacing="0" style="background-color: #f4f4f4; padding: 20px;"> | |
| <tr> | |
| <td align="center"> | |
| <table width="600" cellpadding="0" cellspacing="0" style="background-color: #ffffff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.1);"> | |
| <!-- Header --> | |
| <tr> | |
| <td style="background-color: #4F46E5; padding: 30px; text-align: center;"> | |
| <h1 style="color: #ffffff; margin: 0; font-size: 24px;">Password Reset Request</h1> | |
| </td> | |
| </tr> | |
| <!-- Body --> | |
| <tr> | |
| <td style="padding: 40px 30px;"> | |
| <p style="color: #333333; font-size: 16px; line-height: 1.6; margin: 0 0 20px 0;"> | |
| Hello, | |
| </p> | |
| <p style="color: #333333; font-size: 16px; line-height: 1.6; margin: 0 0 20px 0;"> | |
| We received a request to reset the password for your account associated with <strong>{{USER_EMAIL}}</strong>. | |
| </p> | |
| <p style="color: #333333; font-size: 16px; line-height: 1.6; margin: 0 0 30px 0;"> | |
| Click the button below to reset your password. This link will expire in <strong>15 minutes</strong>. | |
| </p> | |
| <!-- Reset Button --> | |
| <table width="100%" cellpadding="0" cellspacing="0"> | |
| <tr> | |
| <td align="center" style="padding: 0 0 30px 0;"> | |
| <a href="{{RESET_LINK}}" style="display: inline-block; background-color: #4F46E5; color: #ffffff; text-decoration: none; padding: 14px 40px; border-radius: 6px; font-size: 16px; font-weight: bold;">Reset Password</a> | |
| </td> | |
| </tr> | |
| </table> | |
| <!-- Security Notice --> | |
| <div style="background-color: #FEF3C7; border-left: 4px solid #F59E0B; padding: 15px; margin: 0 0 20px 0;"> | |
| <p style="color: #92400E; font-size: 14px; line-height: 1.6; margin: 0;"> | |
| <strong>Security Notice:</strong> If you didn't request a password reset, you can safely ignore this email. Your password will not be changed. | |
| </p> | |
| </div> | |
| <!-- Alternative Link --> | |
| <p style="color: #666666; font-size: 14px; line-height: 1.6; margin: 20px 0 0 0;"> | |
| If the button doesn't work, copy and paste this link into your browser: | |
| </p> | |
| <p style="color: #4F46E5; font-size: 14px; word-break: break-all; margin: 10px 0 0 0;"> | |
| {{RESET_LINK}} | |
| </p> | |
| </td> | |
| </tr> | |
| <!-- Footer --> | |
| <tr> | |
| <td style="background-color: #f8f8f8; padding: 20px 30px; text-align: center; border-top: 1px solid #e0e0e0;"> | |
| <p style="color: #999999; font-size: 12px; margin: 0 0 10px 0;"> | |
| This is an automated message from Todo Application. | |
| </p> | |
| <p style="color: #999999; font-size: 12px; margin: 0;"> | |
| © 2026 Todo Application. All rights reserved. | |
| </p> | |
| </td> | |
| </tr> | |
| </table> | |
| </td> | |
| </tr> | |
| </table> | |
| </body> | |
| </html> | |