lms/resources/views/mail/email-verification.blade.php
Ahmed Darrazi bf507baaff
All checks were successful
Build & Push Docker Image / docker (push) Successful in 1m51s
lang bugfix
2025-12-18 21:17:40 +01:00

73 lines
1.7 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;">
Hallo, {{ $user->name }}!
</h1>
<p style="margin-bottom: 1.5em;">
Danke für deine Registrierung. Bitte bestätige deine E-Mail-Adresse, indem du auf den untenstehenden Button klickst:
</p>
<a
href="{{ $url }}"
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;"
>
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 kein Konto erstellt hast, musst du nichts weiter tun.
</p>
<p style="margin: 2em 0 0;">
Vielen Dank,<br>
{{ config('mail.from.name') }}
</p>
</body>
</html>