121 lines
3.3 KiB
PHP
121 lines
3.3 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Reset Password</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
.container {
|
|
background-color: #f8f9fa;
|
|
border-radius: 10px;
|
|
padding: 30px;
|
|
margin: 20px 0;
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
.header h1 {
|
|
color: #8B0000;
|
|
margin: 0;
|
|
font-size: 24px;
|
|
}
|
|
.content {
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.button {
|
|
display: inline-block;
|
|
background-color: #8B0000;
|
|
color: white !important;
|
|
text-decoration: none;
|
|
padding: 12px 25px;
|
|
border-radius: 5px;
|
|
margin: 20px 0;
|
|
font-weight: bold;
|
|
}
|
|
.button:hover {
|
|
background-color: #660000;
|
|
}
|
|
.link-section {
|
|
margin-top: 20px;
|
|
padding: 15px;
|
|
background-color: #f8f9fa;
|
|
border-radius: 5px;
|
|
}
|
|
.link {
|
|
word-break: break-all;
|
|
color: #8B0000;
|
|
text-decoration: underline;
|
|
}
|
|
.footer {
|
|
text-align: center;
|
|
font-size: 12px;
|
|
color: #666;
|
|
margin-top: 30px;
|
|
}
|
|
.note {
|
|
font-size: 14px;
|
|
color: #666;
|
|
margin-top: 20px;
|
|
}
|
|
.divider {
|
|
margin: 20px 0;
|
|
border-top: 1px solid #eee;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
.divider span {
|
|
background-color: white;
|
|
padding: 0 10px;
|
|
color: #666;
|
|
font-size: 14px;
|
|
position: relative;
|
|
top: -10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Legacy Eatery & Space</h1>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<p>Hai!</p>
|
|
|
|
<p>Anda menerima email ini karena kami menerima permintaan reset password untuk akun Anda.</p>
|
|
|
|
<div style="text-align: center;">
|
|
<a href="{{ $url }}" class="button">Reset Password</a>
|
|
</div>
|
|
|
|
<div class="divider">
|
|
<span>atau</span>
|
|
</div>
|
|
|
|
<div class="link-section">
|
|
<p style="margin-bottom: 10px;">Jika tombol di atas tidak berfungsi, silakan salin dan tempel link berikut ke browser Anda:</p>
|
|
<p><a href="{{ $url }}" class="link">{{ $url }}</a></p>
|
|
</div>
|
|
|
|
<p class="note">Link reset password ini akan kadaluarsa dalam 60 menit.</p>
|
|
|
|
<p class="note">Jika Anda tidak meminta reset password, tidak ada tindakan lebih lanjut yang diperlukan.</p>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>© {{ date('Y') }} Legacy Eatery & Space. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|