| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!DOCTYPE html>
- <html lang="sk">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>auth verifikácia</title>
- </head>
- <body style="margin: 0; padding: 0; background-color: #eeeeee; font-family: sans-serif;">
- <table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#eeeeee" style="background-color: #eeeeee;">
- <tr>
- <td align="center" style="padding: 20px 10%;">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
-
- <tr>
- <td style="padding-top: 10px; padding-bottom: 10px;">
- <h2 style="margin: 0; font-size: 24px; color: #000000;"><%= process.env.APP_NAME %></h2>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 10px;">
- <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">dobrý deň,</p>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 10px;">
- <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">pre prihlásenie kliknite na tlačidlo nižšie.</p>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 15px;">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td align="center" bgcolor="#3232ff" style="border-radius: 8px; background-color: #3232ff;">
- <a href="<%= it.link %>" target="_blank" style="padding: 10px 20px; font-size: 16px; color: #eeeeee; text-decoration: none; display: inline-block; font-weight: normal;">
- kliknite sem
- </a>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 15px;">
- <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">
- alebo zadajte tento kód: <strong><%= it.code %></strong>
- </p>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 30px;">
- <p style="margin: 0; font-size: 16px; line-height: 1.3; color: #000000;">
- nemôžete kliknúť na link? skopírujte si ho: <span style="word-break: break-all;"><%= it.link %></span>
- </p>
- </td>
- </tr>
- <tr>
- <td style="border-top: 1px solid #cccccc; padding-top: 20px;">
- <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>
- <p style="margin: 0;"><small style="font-size: 12px; color: #666666;"><%= process.env.APP_NAME %> <%= new Date().getFullYear() %></small></p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|