| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <!DOCTYPE html>
- <html lang="it">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Reset Password</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;
- }
- .reset-button {
- display: inline-block;
- background-color: #0C6197;
- color: white;
- padding: 15px 30px;
- text-decoration: none;
- border-radius: 5px;
- margin: 20px 0;
- font-weight: bold;
- text-align: center;
- }
- .reset-url {
- background-color: white;
- border: 2px solid #0C6197;
- border-radius: 8px;
- padding: 15px;
- margin: 20px 0;
- word-break: break-all;
- font-family: monospace;
- font-size: 14px;
- }
- .warning {
- background-color: #fff3cd;
- border: 1px solid #ffeaa7;
- color: #856404;
- padding: 15px;
- border-radius: 5px;
- margin: 20px 0;
- }
- .footer {
- margin-top: 30px;
- padding-top: 20px;
- border-top: 1px solid #dee2e6;
- font-size: 14px;
- color: #6c757d;
- }
- </style>
- </head>
- <body>
- <div class="header">
- <h1>🔒 Reimposta la tua password – Leezard.cloud</h1>
- </div>
- <div class="content">
- <h2>Ciao {{ $name }},</h2>
- <p>abbiamo ricevuto una richiesta di reset della password per il tuo account su <strong>Leezard.cloud</strong>.</p>
- <p>Per impostare una nuova password, clicca sul pulsante qui sotto:</p>
- <div style="text-align: center;">
- <a href="{{ $reset_url }}" class="reset-button" style="color: #FFF!important">🔑 Reimposta Password</a>
- </div>
- <p><strong>Oppure copia e incolla questo link nel tuo browser:</strong></p>
- <div class="reset-url">
- {{ $reset_url }}
- </div>
- <div class="warning">
- <strong>⚠️ Importante:</strong> Questo link è valido per <strong>{{ $expires_at }}</strong> e può essere utilizzato una sola volta.
- </div>
- <p>Se non hai richiesto questa operazione, puoi ignorare questa email: nessuna modifica verrà applicata.</p>
- <div class="footer">
- <p><strong>Grazie,<br>
- Il team di Leezard.cloud</strong></p>
- <p>Questa email è stata generata automaticamente. Per favore, non rispondere a questo indirizzo.</p>
- <p>Data richiesta: {{ date('d/m/Y H:i') }} ({{ date('T') }})</p>
- <p>Indirizzo email: {{ $email }}</p>
- </div>
- </div>
- </body>
- </html>
|