75 lines
2.3 KiB
PHP
75 lines
2.3 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Reset Password - DJEE Elektronik</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: #f9f9f9;
|
|
border-radius: 10px;
|
|
padding: 30px;
|
|
margin: 20px 0;
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
.logo {
|
|
max-width: 100px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.button {
|
|
display: inline-block;
|
|
padding: 12px 24px;
|
|
background-color: #2C7A7B;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
margin: 20px 0;
|
|
}
|
|
.footer {
|
|
text-align: center;
|
|
margin-top: 30px;
|
|
font-size: 12px;
|
|
color: #666;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<img src="{{ asset('assets/images/lonceng.png') }}" alt="DJEE Elektronik Logo" class="logo">
|
|
<h2>Reset Password</h2>
|
|
</div>
|
|
|
|
<p>Halo,</p>
|
|
|
|
<p>Kami menerima permintaan untuk mereset password akun DJEE Elektronik Anda. Untuk melanjutkan proses reset password, silakan klik tombol di bawah ini:</p>
|
|
|
|
<div style="text-align: center;">
|
|
<a href="{{ route('password.reset', ['token' => $token, 'email' => $email]) }}" class="button">
|
|
Reset Password
|
|
</a>
|
|
</div>
|
|
|
|
<p>Link ini akan kadaluarsa dalam 24 jam. Jika Anda tidak merasa melakukan permintaan reset password ini, Anda dapat mengabaikan email ini.</p>
|
|
|
|
<p>Jika tombol di atas tidak berfungsi, Anda dapat menyalin dan menempelkan link berikut ke browser Anda:</p>
|
|
<p style="word-break: break-all;">
|
|
{{ route('password.reset', ['token' => $token, 'email' => $email]) }}
|
|
</p>
|
|
|
|
<div class="footer">
|
|
<p>Email ini dikirim secara otomatis, mohon tidak membalas email ini.</p>
|
|
<p>© {{ date('Y') }} DJEE Elektronik. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|