106 lines
2.9 KiB
PHP
106 lines
2.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Reset Password</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
background-color: #f8f9fa;
|
|
margin: 0;
|
|
padding: 20px;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
background-color: #ffffff;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
}
|
|
.header {
|
|
background-color: #0d6efd;
|
|
padding: 30px;
|
|
text-align: center;
|
|
}
|
|
.header h1 {
|
|
color: #ffffff;
|
|
margin: 0;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
}
|
|
.content {
|
|
padding: 40px 30px;
|
|
}
|
|
.content h2 {
|
|
color: #333333;
|
|
font-size: 20px;
|
|
margin-top: 0;
|
|
margin-bottom: 20px;
|
|
}
|
|
.content p {
|
|
color: #666666;
|
|
line-height: 1.6;
|
|
margin-bottom: 20px;
|
|
}
|
|
.button-container {
|
|
text-align: center;
|
|
margin: 30px 0;
|
|
}
|
|
.button {
|
|
display: inline-block;
|
|
background-color: #0d6efd;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
padding: 12px 30px;
|
|
border-radius: 5px;
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
.button:hover {
|
|
background-color: #0b5ed7;
|
|
}
|
|
.footer {
|
|
background-color: #f8f9fa;
|
|
padding: 20px 30px;
|
|
text-align: center;
|
|
border-top: 1px solid #e9ecef;
|
|
}
|
|
.footer p {
|
|
color: #999999;
|
|
font-size: 12px;
|
|
margin: 0;
|
|
}
|
|
.footer a {
|
|
color: #0d6efd;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>{{ config('app.name', 'Club SaaS') }}</h1>
|
|
</div>
|
|
<div class="content">
|
|
<h2>Reset Your Password</h2>
|
|
<p>Hello,</p>
|
|
<p>You are receiving this email because we received a password reset request for your account.</p>
|
|
<p>This password reset link will expire in 60 minutes.</p>
|
|
|
|
<div class="button-container">
|
|
<a href="{{ $url }}" class="button">Reset Password</a>
|
|
</div>
|
|
|
|
<p>If you did not request a password reset, no further action is required.</p>
|
|
</div>
|
|
<div class="footer">
|
|
<p>© {{ date('Y') }} {{ config('app.name', 'Club SaaS') }}. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|