test.blade.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <!DOCTYPE html>
  2. <html lang="es">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Test Email</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. margin: 0;
  11. padding: 0;
  12. background-color: #f4f4f4;
  13. }
  14. .container {
  15. width: 100%;
  16. max-width: 600px;
  17. margin: 0 auto;
  18. background-color: #ffffff;
  19. border-top-left-radius: 30px;
  20. border-top-right-radius: 30px;
  21. border-bottom-left-radius: 8px;
  22. border-bottom-right-radius: 8px;
  23. border: #3c6ab8 solid 1px;
  24. text-align: center;
  25. overflow: hidden;
  26. }
  27. .header {
  28. width: 100%;
  29. height: 50px;
  30. background-color: #3c6ab8;
  31. color: #ffffff;
  32. text-align: center;
  33. padding: 20px 0;
  34. }
  35. .header h1 {
  36. color: #ffffff;
  37. font-size: 24px;
  38. margin: 0 0 10px;
  39. }
  40. .content {
  41. padding: 20px;
  42. }
  43. .img {
  44. background-image: url("https://i.ibb.co/CPpCrjp/candado.png");
  45. background-size: contain;
  46. background-repeat: no-repeat;
  47. background-position: center;
  48. height: 180px;
  49. width: 180px;
  50. margin: 5px auto;
  51. }
  52. .content h1 {
  53. color: #333333;
  54. font-size: 24px;
  55. margin: 0 0 10px;
  56. }
  57. .content p {
  58. color: #666666;
  59. font-size: 16px;
  60. margin: 0 0 20px;
  61. }
  62. .content a {
  63. color: #0044cc;
  64. text-decoration: none;
  65. font-weight: bold;
  66. }
  67. .footer {
  68. text-align: center;
  69. padding: 10px;
  70. font-size: 14px;
  71. color: #666666;
  72. }
  73. </style>
  74. </head>
  75. <body>
  76. <div class="container">
  77. <header class="header">
  78. <h1>
  79. COLEGIO ABC
  80. </h1>
  81. </header>
  82. <div class="content">
  83. <div class="img"></div>
  84. <h1>Has solicitado un cambio de contraseña</h1>
  85. <p>Para continuar con el cambio, entra en el siguiente enlace:</p>
  86. <a href="{{ $resetUrl }}">Link para el cambio de contraseña</a>
  87. </div>
  88. <footer class="footer">
  89. &copy; {{ date('Y') }} ITTEC. Tecnología Inteligente. Todos los derechos reservados.
  90. </footer>
  91. </div>
  92. </body>
  93. </html>