auth.eta 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!DOCTYPE html>
  2. <html lang="sk">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>auth verifikácia</title>
  7. </head>
  8. <body style="margin: 0; padding: 0; background-color: #eeeeee; font-family: sans-serif;">
  9. <table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#eeeeee" style="background-color: #eeeeee;">
  10. <tr>
  11. <td align="center" style="padding: 20px 10%;">
  12. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  13. <tr>
  14. <td style="padding-top: 10px; padding-bottom: 10px;">
  15. <h2 style="margin: 0; font-size: 24px; color: #000000;"><%= process.env.APP_NAME %></h2>
  16. </td>
  17. </tr>
  18. <tr>
  19. <td style="padding-bottom: 10px;">
  20. <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">dobrý deň,</p>
  21. </td>
  22. </tr>
  23. <tr>
  24. <td style="padding-bottom: 10px;">
  25. <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">pre prihlásenie kliknite na tlačidlo nižšie.</p>
  26. </td>
  27. </tr>
  28. <tr>
  29. <td style="padding-bottom: 15px;">
  30. <table border="0" cellspacing="0" cellpadding="0">
  31. <tr>
  32. <td align="center" bgcolor="#3232ff" style="border-radius: 8px; background-color: #3232ff;">
  33. <a href="<%= it.link %>" target="_blank" style="padding: 10px 20px; font-size: 16px; color: #eeeeee; text-decoration: none; display: inline-block; font-weight: normal;">
  34. kliknite sem
  35. </a>
  36. </td>
  37. </tr>
  38. </table>
  39. </td>
  40. </tr>
  41. <tr>
  42. <td style="padding-bottom: 15px;">
  43. <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">
  44. alebo zadajte tento kód: <strong><%= it.code %></strong>
  45. </p>
  46. </td>
  47. </tr>
  48. <tr>
  49. <td style="padding-bottom: 30px;">
  50. <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">
  51. nemôžete kliknúť na link? skopírujte si ho: <span style="word-break: break-all;"><%= it.link %></span>
  52. </p>
  53. </td>
  54. </tr>
  55. <tr>
  56. <td style="border-top: 1px solid #cccccc; padding-top: 20px;">
  57. <p style="margin: 0; margin-bottom: 10px;"><small style="font-size: 12px; color: #666666;">ak ste si tento email nevyžiadali, môžete ho kľudne ignorovať.</small></p>
  58. <p style="margin: 0;"><small style="font-size: 12px; color: #666666;"><%= process.env.APP_NAME %> <%= new Date().getFullYear() %></small></p>
  59. </td>
  60. </tr>
  61. </table>
  62. </td>
  63. </tr>
  64. </table>
  65. </body>
  66. </html>