presseportale/resources/views/emails/auth/go-live-password-reset.blade.php
Kevin Adametz 5b8bdf4182
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
12-05-2026 Frontend dev
2026-05-12 18:32:33 +02:00

39 lines
1.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>