| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <!DOCTYPE html>
- <html lang="it">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Benvenuto su Leezard.cloud – Attiva il tuo account</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- line-height: 1.6;
- color: #333;
- max-width: 600px;
- margin: 0 auto;
- padding: 20px;
- }
- .header {
- background-color: #0C6197;
- color: white;
- padding: 20px;
- text-align: center;
- border-radius: 8px 8px 0 0;
- }
- .content {
- background-color: #f8f9fa;
- padding: 30px;
- border-radius: 0 0 8px 8px;
- }
- .activation-box {
- background-color: white;
- border: 2px solid #0C6197;
- border-radius: 8px;
- padding: 20px;
- margin: 20px 0;
- text-align: center;
- }
- .activation-button {
- display: inline-block;
- background-color: #0C6197;
- color: white;
- padding: 15px 40px;
- text-decoration: none;
- border-radius: 5px;
- margin: 20px 0;
- font-weight: bold;
- font-size: 16px;
- }
- .activation-button:hover {
- background-color: #094c73;
- }
- .link-box {
- background-color: #e9ecef;
- padding: 15px;
- border-radius: 4px;
- font-family: monospace;
- margin: 20px 0;
- word-break: break-all;
- font-size: 14px;
- }
- .footer {
- margin-top: 30px;
- padding-top: 20px;
- border-top: 1px solid #dee2e6;
- font-size: 14px;
- color: #6c757d;
- }
- .warning {
- background-color: #fff3cd;
- border: 1px solid #ffeaa7;
- color: #856404;
- padding: 15px;
- border-radius: 5px;
- margin: 20px 0;
- }
- .platform-name {
- font-weight: bold;
- color: #0C6197;
- }
- </style>
- </head>
- <body>
- <div class="header">
- <h1>🎉 Benvenuto su Leezard.cloud</h1>
- </div>
- <div class="content">
- <h2>Ciao <strong>{{ $name }}</strong>,</h2>
- <p>è stato creato per te un account su <span class="platform-name">{{ $platform_name }}</span>.</p>
- <p>Per completare l'attivazione, conferma il tuo indirizzo email e imposta la tua password cliccando sul pulsante qui sotto:</p>
- <div class="activation-box">
- <h3>🔐 Attiva il tuo account</h3>
- <a href="{{ $activation_link }}" class="activation-button" style="color: #FFF!important">🚀 Attiva il tuo account</a>
- </div>
- <p><strong>Oppure</strong> copia e incolla questo link nel tuo browser:</p>
- <div class="link-box">
- {{ $activation_link }}
- </div>
- <p>Grazie e benvenuto!</p>
- <p><strong>Il team di Leezard.cloud</strong></p>
- <div class="footer">
- <p><strong>Leezard.cloud</strong></p>
- <p>Questa email è stata generata automaticamente. Per favore, non rispondere a questo indirizzo.</p>
- <p>Data invio: {{ date('d/m/Y H:i') }} ({{ date('T') }})</p>
- </div>
- </div>
- </body>
- </html>
|