auth.eta 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="color-scheme" content="light dark">
  7. <meta name="supported-color-schemes" content="light dark">
  8. <title>auth verification</title>
  9. </head>
  10. <body style="margin: 0; padding: 0; background-color: #eeeeee; font-family: sans-serif;">
  11. <table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#eeeeee" style="background-color: #eeeeee;">
  12. <tr>
  13. <td align="center" style="padding: 20px 10%;">
  14. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  15. <tr>
  16. <td style="padding-top: 10px; padding-bottom: 10px;">
  17. <h2 style="margin: 0; font-size: 24px; color: #000000;"><%= process.env.APP_NAME %></h2>
  18. </td>
  19. </tr>
  20. <tr>
  21. <td style="padding-bottom: 10px;">
  22. <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">hi,</p>
  23. </td>
  24. </tr>
  25. <tr>
  26. <td style="padding-bottom: 10px;">
  27. <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">to login click on the button below.</p>
  28. </td>
  29. </tr>
  30. <tr>
  31. <td style="padding-bottom: 15px;">
  32. <table border="0" cellspacing="0" cellpadding="0">
  33. <tr>
  34. <td align="center" bgcolor="#3232ff" style="border-radius: 8px; background-color: #3232ff;">
  35. <a href="<%= it.link %>" target="_blank" style="padding: 10px 20px; font-size: 16px; color: #eeeeee; text-decoration: none; display: inline-block; font-weight: normal;">
  36. click here
  37. </a>
  38. </td>
  39. </tr>
  40. </table>
  41. </td>
  42. </tr>
  43. <tr>
  44. <td style="padding-bottom: 15px;">
  45. <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">
  46. or enter this code: <strong><%= it.code %></strong>
  47. </p>
  48. </td>
  49. </tr>
  50. <tr>
  51. <td style="padding-bottom: 30px;">
  52. <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">
  53. cannot click on the link? copy it: <span style="word-break: break-all;"><%= it.link %></span>
  54. </p>
  55. </td>
  56. </tr>
  57. <tr>
  58. <td style="border-top: 1px solid #cccccc; padding-top: 20px;">
  59. <p style="margin: 0; margin-bottom: 10px;"><small style="font-size: 12px; color: #666666;">if you did not request this email, you can safely ignore it.</small></p>
  60. <p style="margin: 0;"><small style="font-size: 12px; color: #666666;"><%= process.env.APP_NAME %> <%= new Date().getFullYear() %></small></p>
  61. </td>
  62. </tr>
  63. </table>
  64. </td>
  65. </tr>
  66. </table>
  67. </body>
  68. </html>