39 lines
1.5 KiB
PHP
39 lines
1.5 KiB
PHP
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>Bitte Passwort setzen – {{ config('app.name') }}</title>
|
||
<style>
|
||
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; max-width: 600px; margin: 0 auto; padding: 20px; }
|
||
.btn { display: inline-block; background: #2563eb; color: #fff; padding: 12px 28px; border-radius: 6px; text-decoration: none; font-weight: bold; margin: 16px 0; }
|
||
.note { font-size: 13px; color: #666; border-top: 1px solid #eee; padding-top: 12px; margin-top: 24px; }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<p>Hallo {{ $user->name }},</p>
|
||
|
||
<p>
|
||
wir haben unser Presseportal auf ein neues System migriert.
|
||
Ihr Account wurde übertragen – Sie müssen jedoch einmalig ein neues Passwort setzen,
|
||
um sich künftig einzuloggen.
|
||
</p>
|
||
|
||
<p>Klicken Sie auf den folgenden Link, um Ihr Passwort festzulegen:</p>
|
||
|
||
<p><a class="btn" href="{{ $resetUrl }}">Passwort jetzt setzen</a></p>
|
||
|
||
<p>
|
||
Alternativ können Sie diesen Link in Ihren Browser kopieren:<br>
|
||
<small>{{ $resetUrl }}</small>
|
||
</p>
|
||
|
||
<div class="note">
|
||
<p>Der Link ist <strong>{{ $expiresInMinutes }} Minuten</strong> gültig.</p>
|
||
<p>
|
||
Falls Sie keinen Account bei uns haben oder diese E-Mail nicht erwartet haben,
|
||
ignorieren Sie diese Nachricht bitte. Kein Handlungsbedarf.
|
||
</p>
|
||
<p>Bei Fragen erreichen Sie uns unter {{ config('mail.from.address') }}.</p>
|
||
</div>
|
||
</body>
|
||
</html>
|