| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!DOCTYPE html>
- <html lang="sk">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <style>
- body {
- margin: 0;
- display: flex;
- flex-direction: column;
- padding-inline: 10%;
- font-family: sans-serif;
- line-height: 1.3;
- background-color: #eee;
- gap: 0.5em;
- }
- h2, p {
- margin-block: 0.5em;
- }
- [role="button"] {
- background-color: rgba(0, 0, 0, 0.1);
- border-radius: 0.5em;
- padding: 0.5em 1em;
- text-decoration: none;
- color: initial;
- border: none;
- width: max-content;
- cursor: pointer;
- display: flex;
- align-items: center;
- gap: 0.5em;
- font-size: 1em;
- height: max-content;
- }
- [role="button"].primary {
- color: #eee;
- background-color: rgb(50, 50, 255);
- }
- </style>
- </head>
- <body>
- <h2><%= process.env.APP_NAME %></h2>
- <p>dobrý deň,</p>
- <p>pre prihlásenie kliknite na tlačidlo nižšie.</p>
- <a role="button" class="primary" href="<%= it.link %>">kliknite sem</a>
- <p>alebo zadajte tento kód: <strong><%= it.code %></strong></p>
- <p>nemôžete kliknúť na link? skopírujte si ho: <%= it.link %></p>
- <footer>
- <p><small>ak ste si tento email nevyžiadali, môžete ho kľudne ignorovať.</small></p>
- <p><small><%= process.env.APP_NAME %> <%= new Date().getFullYear() %></small></p>
- </footer>
- </body>
- </html>
|