mirror of
https://github.com/dyzulk/trustlab-api.git
synced 2026-01-26 21:32:08 +07:00
91 lines
2.5 KiB
PHP
91 lines
2.5 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
body {
|
|
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
|
line-height: 1.6;
|
|
color: #374151;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f9fafb;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 40px auto;
|
|
background: #ffffff;
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
|
|
border: 1px solid #e5e7eb;
|
|
}
|
|
.header {
|
|
background-color: #111827;
|
|
padding: 32px;
|
|
text-align: center;
|
|
}
|
|
.header h1 {
|
|
color: #ffffff;
|
|
margin: 0;
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
}
|
|
.content {
|
|
padding: 40px;
|
|
text-align: center;
|
|
}
|
|
.content p {
|
|
margin-bottom: 24px;
|
|
}
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 12px 32px;
|
|
background-color: #465fff;
|
|
color: #ffffff !important;
|
|
text-decoration: none;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
margin-bottom: 32px;
|
|
}
|
|
.footer {
|
|
padding: 32px;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
color: #6b7280;
|
|
border-top: 1px solid #f3f4f6;
|
|
}
|
|
.sub-link {
|
|
font-size: 12px;
|
|
color: #9ca3af;
|
|
word-break: break-all;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Reset Your Password</h1>
|
|
</div>
|
|
<div class="content">
|
|
<p>Hello {{ $name }},</p>
|
|
|
|
<p>You are receiving this email because we received a password reset request for your TrustLab account.</p>
|
|
|
|
<a href="{{ $url }}" class="btn">Reset Password</a>
|
|
|
|
<p>This password reset link will expire in 60 minutes.</p>
|
|
<p>If you did not request a password reset, no further action is required.</p>
|
|
|
|
<div class="sub-link">
|
|
<p>If you're having trouble clicking the "Reset Password" button, copy and paste the URL below into your web browser:</p>
|
|
<p>{{ $url }}</p>
|
|
</div>
|
|
</div>
|
|
<div class="footer">
|
|
© {{ date('Y') }} TrustLab. All rights reserved.
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|