129 lines
4.0 KiB
PHP
129 lines
4.0 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Verify Your Email</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Geist', 'Segoe UI', Helvetica, Arial, sans-serif;
|
|
background-color: #f8fafc;
|
|
margin: 0;
|
|
padding: 0;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 40px auto;
|
|
background: #ffffff;
|
|
border-radius: 24px;
|
|
overflow: hidden;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
|
|
border: 1px solid #e2e8f0;
|
|
}
|
|
.header {
|
|
background-color: #185FA5;
|
|
padding: 40px;
|
|
text-align: center;
|
|
color: #ffffff;
|
|
}
|
|
.logo {
|
|
font-size: 28px;
|
|
font-weight: 900;
|
|
letter-spacing: -0.05em;
|
|
margin: 0;
|
|
text-transform: uppercase;
|
|
}
|
|
.content {
|
|
padding: 48px;
|
|
color: #334155;
|
|
line-height: 1.6;
|
|
}
|
|
.greeting {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
margin-top: 0;
|
|
margin-bottom: 16px;
|
|
color: #0f172a;
|
|
}
|
|
.text {
|
|
font-size: 14px;
|
|
color: #475569;
|
|
margin-bottom: 24px;
|
|
}
|
|
.otp-container {
|
|
background-color: #f1f5f9;
|
|
border: 2px dashed #cbd5e1;
|
|
border-radius: 16px;
|
|
padding: 24px;
|
|
text-align: center;
|
|
margin: 32px 0;
|
|
}
|
|
.otp-code {
|
|
font-size: 36px;
|
|
font-weight: 800;
|
|
letter-spacing: 0.15em;
|
|
color: #185FA5;
|
|
margin: 0;
|
|
}
|
|
.expiry-warning {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: #e11d48;
|
|
margin-top: 8px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
.security-notice {
|
|
background-color: #f8fafc;
|
|
border-left: 4px solid #185FA5;
|
|
padding: 16px;
|
|
border-radius: 0 12px 12px 0;
|
|
font-size: 12px;
|
|
color: #64748b;
|
|
margin-bottom: 24px;
|
|
}
|
|
.footer {
|
|
background-color: #f8fafc;
|
|
padding: 24px;
|
|
text-align: center;
|
|
border-top: 1px solid #e2e8f0;
|
|
font-size: 11px;
|
|
color: #94a3b8;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1 class="logo">Marketplace</h1>
|
|
<div style="font-size: 12px; font-weight: 700; letter-spacing: 0.2em; opacity: 0.8; margin-top: 8px; text-transform: uppercase;">Employer Verification</div>
|
|
</div>
|
|
<div class="content">
|
|
<h2 class="greeting">Hello {{ $employerName }},</h2>
|
|
<p class="text">
|
|
Thank you for starting the registration process for <strong>{{ $companyName }}</strong> on the Marketplace portal. To verify your email address and proceed with setting up your account, please enter the 6-digit one-time passcode (OTP) below.
|
|
</p>
|
|
|
|
<div class="otp-container">
|
|
<div class="otp-code">{{ $otp }}</div>
|
|
<div class="expiry-warning">Valid for 10 minutes only</div>
|
|
</div>
|
|
|
|
<div class="security-notice">
|
|
<strong>Security Alert:</strong> This code is confidential. Our support team will never ask you for this code. Do not share this passcode with anyone.
|
|
</div>
|
|
|
|
<p class="text" style="margin-bottom: 0;">
|
|
If you did not initiate this registration, you can safely ignore this email.
|
|
</p>
|
|
</div>
|
|
<div class="footer">
|
|
Empowering Direct Household Hiring • Secure Portal
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|