82 lines
2.1 KiB
PHP
82 lines
2.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Passwort erfolgreich geändert</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #eef2f7;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
.wrapper {
|
|
width: 100%;
|
|
padding: 32px 0;
|
|
background: linear-gradient(135deg, #7b5be2, #4a90e2);
|
|
}
|
|
|
|
.container {
|
|
max-width: 480px;
|
|
margin: 0 auto;
|
|
padding: 32px;
|
|
background: #ffffff;
|
|
border-radius: 14px;
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
font-size: 22px;
|
|
}
|
|
|
|
p {
|
|
text-align: center;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.info-box {
|
|
background: #f4f6ff;
|
|
border-left: 4px solid #6a5be2;
|
|
padding: 14px 18px;
|
|
border-radius: 6px;
|
|
margin: 20px 0;
|
|
font-size: 14px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
<div class="container">
|
|
|
|
<h1>Passwort aktualisiert</h1>
|
|
|
|
<p>Hallo {{ $user->name }},</p>
|
|
|
|
<p>dies ist eine Bestätigung, dass dein Passwort erfolgreich geändert wurde.</p>
|
|
|
|
<div class="info-box">
|
|
<p><strong>Aktuelle Zugangsdaten:</strong></p>
|
|
<p>Benutzername/Email: <strong>{{ $user->username }} oder {{ $user->email }}</strong></p>
|
|
<p>Passwort: <strong>{{ $new_password }}</strong></p>
|
|
</div>
|
|
|
|
<p>Falls du diese Änderung nicht selbst vorgenommen hast, kontaktiere bitte umgehend unseren Support.
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div class="footer" style="text-align:center; font-size:12px; color:#eee; margin-top:20px;">
|
|
© {{ date('Y') }} LaraBlog. Alle Rechte vorbehalten.
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|