Add comprehensive Terraform infrastructure with Firebase automation
- 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>
This commit is contained in:
95
terraform/templates/email_verification.html
Normal file
95
terraform/templates/email_verification.html
Normal file
@@ -0,0 +1,95 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Verify Your Email - 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;
|
||||
}
|
||||
.welcome-box {
|
||||
background: white;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
border-left: 4px solid #2c5282;
|
||||
margin: 20px 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<h1>Rothbard Law Group</h1>
|
||||
<p>Client Portal</p>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<h2>Welcome to the Rothbard Law Group Client Portal</h2>
|
||||
|
||||
<div class="welcome-box">
|
||||
<p><strong>Thank you for signing up!</strong></p>
|
||||
<p>You're just one step away from accessing your case information securely.</p>
|
||||
</div>
|
||||
|
||||
<p>Please verify your email address to complete your registration:</p>
|
||||
|
||||
<p><a href="{{ verificationLink }}" class="button">Verify Email Address</a></p>
|
||||
|
||||
<p>Or copy and paste this link into your browser:</p>
|
||||
<p>{{ verificationLink }}</p>
|
||||
|
||||
<p><strong>What happens next?</strong></p>
|
||||
<ul>
|
||||
<li>Once verified, you'll have full access to the client portal</li>
|
||||
<li>You can view your case information and documents</li>
|
||||
<li>Communicate securely with our legal team</li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Important:</strong></p>
|
||||
<ul>
|
||||
<li>This verification link will expire in 24 hours</li>
|
||||
<li>If you didn't create an account, please ignore this email</li>
|
||||
<li>Your account information is kept secure and confidential</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>
|
||||
Reference in New Issue
Block a user