85 lines
2.1 KiB
PHP
85 lines
2.1 KiB
PHP
<!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 E‑Mail-Adresse für dein {{ config('mail.from.name') }}-Konto zu ändern. Um die
|
||
Änderung abzuschließen, bestätige bitte deine neue E‑Mail-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>
|