12-05-2026 Frontend dev
This commit is contained in:
parent
405df0a122
commit
5b8bdf4182
779 changed files with 480564 additions and 6241 deletions
39
resources/views/emails/auth/go-live-password-reset.blade.php
Normal file
39
resources/views/emails/auth/go-live-password-reset.blade.php
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<!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>
|
||||
20
resources/views/emails/auth/magic-login-link.blade.php
Normal file
20
resources/views/emails/auth/magic-login-link.blade.php
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Ihr Login-Link</title>
|
||||
</head>
|
||||
<body style="font-family: Arial, sans-serif; line-height: 1.5;">
|
||||
<p>Hallo {{ $user->name }},</p>
|
||||
|
||||
<p>hier ist Ihr Einmal-Link fuer den Login in Ihr Kundenkonto.</p>
|
||||
|
||||
<p>
|
||||
<a href="{{ $loginUrl }}">Jetzt einloggen</a>
|
||||
</p>
|
||||
|
||||
<p>Der Link ist gueltig bis {{ $expiresAt }} Uhr und kann nur einmal verwendet werden.</p>
|
||||
|
||||
<p>Falls Sie den Login nicht angefordert haben, ignorieren Sie diese E-Mail bitte.</p>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue