297 lines
6.7 KiB
HTML
297 lines
6.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<title>Action Required - Village Share</title>
|
|
<style>
|
|
/* Reset styles */
|
|
body,
|
|
table,
|
|
td,
|
|
p,
|
|
a,
|
|
li,
|
|
blockquote {
|
|
-webkit-text-size-adjust: 100%;
|
|
-ms-text-size-adjust: 100%;
|
|
}
|
|
table,
|
|
td {
|
|
mso-table-lspace: 0pt;
|
|
mso-table-rspace: 0pt;
|
|
}
|
|
img {
|
|
-ms-interpolation-mode: bicubic;
|
|
}
|
|
|
|
/* Base styles */
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100% !important;
|
|
min-width: 100%;
|
|
height: 100%;
|
|
background-color: #f8f9fa;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
line-height: 1.6;
|
|
color: #212529;
|
|
}
|
|
|
|
/* Container */
|
|
.email-container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
background-color: #ffffff;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* Header */
|
|
.header {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
padding: 40px 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
letter-spacing: -1px;
|
|
}
|
|
|
|
.tagline {
|
|
color: #e9ecef;
|
|
font-size: 14px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
/* Content */
|
|
.content {
|
|
padding: 40px 30px;
|
|
}
|
|
|
|
.content h1 {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
margin: 0 0 20px 0;
|
|
color: #212529;
|
|
}
|
|
|
|
.content h2 {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
margin: 30px 0 15px 0;
|
|
color: #495057;
|
|
}
|
|
|
|
.content p {
|
|
margin: 0 0 16px 0;
|
|
color: #6c757d;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.content strong {
|
|
color: #495057;
|
|
}
|
|
|
|
/* Warning box */
|
|
.warning-box {
|
|
background-color: #fff3cd;
|
|
border-left: 4px solid #ffc107;
|
|
padding: 20px;
|
|
margin: 20px 0;
|
|
border-radius: 0 6px 6px 0;
|
|
}
|
|
|
|
.warning-box p {
|
|
margin: 0 0 10px 0;
|
|
color: #856404;
|
|
}
|
|
|
|
.warning-box p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Info box */
|
|
.info-box {
|
|
background-color: #e7f3ff;
|
|
border-left: 4px solid #0066cc;
|
|
padding: 20px;
|
|
margin: 20px 0;
|
|
border-radius: 0 6px 6px 0;
|
|
}
|
|
|
|
.info-box p {
|
|
margin: 0 0 10px 0;
|
|
color: #004085;
|
|
}
|
|
|
|
.info-box p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Info table */
|
|
.info-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin: 20px 0;
|
|
background-color: #f8f9fa;
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.info-table th,
|
|
.info-table td {
|
|
padding: 15px;
|
|
text-align: left;
|
|
border-bottom: 1px solid #dee2e6;
|
|
}
|
|
|
|
.info-table th {
|
|
background-color: #e9ecef;
|
|
font-weight: 600;
|
|
color: #495057;
|
|
}
|
|
|
|
.info-table td {
|
|
color: #6c757d;
|
|
}
|
|
|
|
.info-table tr:last-child td {
|
|
border-bottom: none;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background-color: #f8f9fa;
|
|
padding: 30px;
|
|
text-align: center;
|
|
border-top: 1px solid #e9ecef;
|
|
}
|
|
|
|
.footer p {
|
|
margin: 0 0 10px 0;
|
|
font-size: 14px;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.footer a {
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media only screen and (max-width: 600px) {
|
|
.email-container {
|
|
margin: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.header,
|
|
.content,
|
|
.footer {
|
|
padding: 20px;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 28px;
|
|
}
|
|
|
|
.content h1 {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.info-table th,
|
|
.info-table td {
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="email-container">
|
|
<div class="header">
|
|
<div class="logo">Village Share</div>
|
|
<div class="tagline">Action Required: Complete Your Payment</div>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<p>Hi {{renterName}},</p>
|
|
|
|
<p>
|
|
Great news! <strong>{{ownerName}}</strong> has approved your rental
|
|
request for <strong>{{itemName}}</strong>.
|
|
</p>
|
|
|
|
<div class="warning-box">
|
|
<p><strong>Your bank requires additional verification</strong></p>
|
|
<p>
|
|
To complete the payment and confirm your rental, your bank needs you
|
|
to verify your identity. This is a security measure to protect your
|
|
account.
|
|
</p>
|
|
</div>
|
|
|
|
<h2>Rental Details</h2>
|
|
<table class="info-table">
|
|
<tr>
|
|
<th>Item</th>
|
|
<td>{{itemName}}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Amount</th>
|
|
<td>${{amount}}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="info-box">
|
|
<p><strong>How to Complete Your Payment</strong></p>
|
|
<ol style="margin: 10px 0; padding-left: 20px; color: #004085">
|
|
<li>
|
|
Go directly to <strong>village-share.com</strong> in your browser
|
|
</li>
|
|
<li>Log in to your account</li>
|
|
<li>Navigate to <strong>My Rentals</strong> from the navigation menu</li>
|
|
<li>
|
|
Find the rental for <strong>{{itemName}}</strong>
|
|
</li>
|
|
<li>Click <strong>"Complete Payment"</strong> and follow your bank's verification steps</li>
|
|
</ol>
|
|
</div>
|
|
|
|
<p>
|
|
The verification process usually takes less than a minute. Once
|
|
complete, your rental will be confirmed and you'll receive a
|
|
confirmation email.
|
|
</p>
|
|
|
|
<p>
|
|
If you did not request this rental, please ignore this email.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p><strong>Village Share</strong></p>
|
|
<p>
|
|
This is a notification about your rental request. You received this
|
|
message because the owner approved your rental and your bank requires
|
|
additional verification.
|
|
</p>
|
|
<p>If you have any questions, please contact our support team.</p>
|
|
<p>© 2025 Village Share. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|