lms/resources/views/mail/email-change-verification.blade.php
Ahmed Darrazi 0aa2081a1d
All checks were successful
Build & Push Docker Image / docker (push) Successful in 1m49s
Übersetze Mail-Vorlagen ins Deutsche (du-Form)
2025-12-18 21:33:01 +01:00

85 lines
2.1 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
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{{ config('app.name') }}</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
http-equiv="Content-Type"
content="text/html; charset=UTF-8"
/>
<meta
name="color-scheme"
content="light"
>
<meta
name="supported-color-schemes"
content="light"
>
<style>
@media only screen and (max-width: 600px) {
.inner-body {
width: 100% !important;
}
.footer {
width: 100% !important;
}
}
@media only screen and (max-width: 500px) {
.button {
width: 100% !important;
}
}
</style>
{{ $head ?? '' }}
</head>
<body>
<h1 style="font-size: 1.5em; font-weight: 600; margin-bottom: 1em;">
E-Mail-Änderung
</h1>
<p style="margin-bottom: 1em;">
Hallo, {{ $user->name }}!
</p>
<p style="margin-bottom: 1.5em;">
Wir haben eine Anfrage erhalten, die EMail-Adresse für dein {{ config('mail.from.name') }}-Konto zu ändern. Um die
Änderung abzuschließen, bestätige bitte deine neue EMail-Adresse, indem du auf den untenstehenden Button klickst:
</p>
<a
href="{{ $verificationUrl }}"
style="display: inline-block; padding: 0.75em 1.5em; background-color: #0969da; color: #fff; border-radius: 0.5em; text-decoration: none; font-weight: 600; margin-bottom: 1.5em;"
>
Neue E-Mail-Adresse bestätigen
</a>
<p style="margin-bottom: 1em;">
Dieser Bestätigungslink läuft in 5 Minuten ab.
</p>
<p style="margin-bottom: 1em;">
Wenn du diese Änderung nicht angefordert hast, sichere bitte sofort dein Konto, indem du dein Passwort änderst, und
kontaktiere unser Support-Team.
</p>
<p style="margin: 2em 0 0;">
Vielen Dank,<br>
{{ config('mail.from.name') }} Team
</p>
</body>
</html>