- Create Firebase project, web app, and Firestore database - Automate Firebase Authentication with email templates - Configure security rules for user data isolation - Support Cloud Run and App Engine hosting options - Add professional email templates for password reset and verification - Include deployment scripts and comprehensive documentation - Implement service accounts with minimal required permissions - Add Docker configuration for containerized deployment 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
78 lines
2.3 KiB
HTML
78 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Reset Your Password - Rothbard Law Group</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
.header {
|
|
background: #1a365d;
|
|
color: white;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
.content {
|
|
padding: 30px 20px;
|
|
background: #f8f9fa;
|
|
}
|
|
.button {
|
|
display: inline-block;
|
|
background: #2c5282;
|
|
color: white;
|
|
padding: 12px 30px;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
margin: 20px 0;
|
|
}
|
|
.footer {
|
|
background: #e2e8f0;
|
|
padding: 20px;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
color: #666;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<h1>Rothbard Law Group</h1>
|
|
<p>Client Portal</p>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<h2>Reset Your Password</h2>
|
|
|
|
<p>Hello,</p>
|
|
|
|
<p>We received a request to reset the password for your Rothbard Law Group client portal account. Click the button below to reset your password:</p>
|
|
|
|
<p><a href="{{ resetLink }}" class="button">Reset Password</a></p>
|
|
|
|
<p>Or copy and paste this link into your browser:</p>
|
|
<p>{{ resetLink }}</p>
|
|
|
|
<p><strong>Important:</strong></p>
|
|
<ul>
|
|
<li>This link will expire in 24 hours</li>
|
|
<li>If you didn't request a password reset, please ignore this email</li>
|
|
<li>For security reasons, never share this link with anyone</li>
|
|
</ul>
|
|
|
|
<p>If you have any questions or need assistance, please contact our support team.</p>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>© 2024 Rothbard Law Group. All rights reserved.</p>
|
|
<p>This is an automated message. Please do not reply to this email.</p>
|
|
<p>Rothbard Law Group | 123 Legal Street | City, State 12345 | (555) 123-4567</p>
|
|
</div>
|
|
</body>
|
|
</html> |