password-reset.blade.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <!DOCTYPE html>
  2. <html lang="it">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Reset Password</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. line-height: 1.6;
  11. color: #333;
  12. max-width: 600px;
  13. margin: 0 auto;
  14. padding: 20px;
  15. }
  16. .header {
  17. background-color: #0C6197;
  18. color: white;
  19. padding: 20px;
  20. text-align: center;
  21. border-radius: 8px 8px 0 0;
  22. }
  23. .content {
  24. background-color: #f8f9fa;
  25. padding: 30px;
  26. border-radius: 0 0 8px 8px;
  27. }
  28. .reset-button {
  29. display: inline-block;
  30. background-color: #0C6197;
  31. color: white;
  32. padding: 15px 30px;
  33. text-decoration: none;
  34. border-radius: 5px;
  35. margin: 20px 0;
  36. font-weight: bold;
  37. text-align: center;
  38. }
  39. .reset-url {
  40. background-color: white;
  41. border: 2px solid #0C6197;
  42. border-radius: 8px;
  43. padding: 15px;
  44. margin: 20px 0;
  45. word-break: break-all;
  46. font-family: monospace;
  47. font-size: 14px;
  48. }
  49. .warning {
  50. background-color: #fff3cd;
  51. border: 1px solid #ffeaa7;
  52. color: #856404;
  53. padding: 15px;
  54. border-radius: 5px;
  55. margin: 20px 0;
  56. }
  57. .footer {
  58. margin-top: 30px;
  59. padding-top: 20px;
  60. border-top: 1px solid #dee2e6;
  61. font-size: 14px;
  62. color: #6c757d;
  63. }
  64. </style>
  65. </head>
  66. <body>
  67. <div class="header">
  68. <h1>🔒 Reimposta la tua password – Leezard.cloud</h1>
  69. </div>
  70. <div class="content">
  71. <h2>Ciao {{ $name }},</h2>
  72. <p>abbiamo ricevuto una richiesta di reset della password per il tuo account su <strong>Leezard.cloud</strong>.</p>
  73. <p>Per impostare una nuova password, clicca sul pulsante qui sotto:</p>
  74. <div style="text-align: center;">
  75. <a href="{{ $reset_url }}" class="reset-button" style="color: #FFF!important">🔑 Reimposta Password</a>
  76. </div>
  77. <p><strong>Oppure copia e incolla questo link nel tuo browser:</strong></p>
  78. <div class="reset-url">
  79. {{ $reset_url }}
  80. </div>
  81. <div class="warning">
  82. <strong>⚠️ Importante:</strong> Questo link è valido per <strong>{{ $expires_at }}</strong> e può essere utilizzato una sola volta.
  83. </div>
  84. <p>Se non hai richiesto questa operazione, puoi ignorare questa email: nessuna modifica verrà applicata.</p>
  85. <div class="footer">
  86. <p><strong>Grazie,<br>
  87. Il team di Leezard.cloud</strong></p>
  88. <p>Questa email è stata generata automaticamente. Per favore, non rispondere a questo indirizzo.</p>
  89. <p>Data richiesta: {{ date('d/m/Y H:i') }} ({{ date('T') }})</p>
  90. <p>Indirizzo email: {{ $email }}</p>
  91. </div>
  92. </div>
  93. </body>
  94. </html>