169 lines
3.1 KiB
HTML
169 lines
3.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Confirm Your Account</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #e6f5e9;
|
|
font-family: 'Poppins', 'Segoe UI', Arial, Helvetica, sans-serif;
|
|
color: #233c46;
|
|
}
|
|
|
|
table {
|
|
border-spacing: 0;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.wrapper {
|
|
width: 100%;
|
|
background-color: #e6f5e9;
|
|
padding: 24px 12px;
|
|
}
|
|
|
|
.card {
|
|
width: 100%;
|
|
max-width: 620px;
|
|
margin: 0 auto;
|
|
background-color: #ffffff;
|
|
border: 1px solid #d9eadf;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
box-shadow: 0 8px 24px rgba(35, 60, 70, 0.08);
|
|
}
|
|
|
|
.header {
|
|
padding: 18px 24px;
|
|
background-color: #233c46;
|
|
border-top: 4px solid #2eb745;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.brand {
|
|
margin: 0;
|
|
font-size: 12px;
|
|
letter-spacing: 1px;
|
|
font-weight: 600;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.title {
|
|
margin: 8px 0 0;
|
|
font-size: 22px;
|
|
font-weight: 700;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.content {
|
|
padding: 24px;
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.content p {
|
|
margin: 0 0 16px;
|
|
}
|
|
|
|
.button-wrap {
|
|
margin: 24px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.button {
|
|
display: inline-block;
|
|
padding: 12px 24px;
|
|
background-color: #2eb745;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
font-weight: 600;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.fallback-link {
|
|
margin-top: 12px;
|
|
padding: 12px;
|
|
background-color: #f7fbf8;
|
|
border: 1px solid #d9eadf;
|
|
border-radius: 4px;
|
|
font-size: 13px;
|
|
color: #4c6169;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.link {
|
|
color: #2eb745;
|
|
}
|
|
|
|
.footer {
|
|
padding: 18px 24px 24px;
|
|
font-size: 13px;
|
|
line-height: 1.6;
|
|
color: #5f7178;
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
.wrapper {
|
|
padding: 16px 8px;
|
|
}
|
|
|
|
.header,
|
|
.content,
|
|
.footer {
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table role="presentation" class="wrapper" width="100%">
|
|
<tr>
|
|
<td align="center">
|
|
<table role="presentation" class="card" width="100%">
|
|
<tr>
|
|
<td class="header">
|
|
<p class="brand">TASKNOTE</p>
|
|
<p class="title">Confirm your account</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="content">
|
|
<p>Hello,</p>
|
|
<p>
|
|
Welcome to Tasknote. Confirm your account to start organizing tasks and notes in
|
|
one place.
|
|
</p>
|
|
|
|
<div class="button-wrap">
|
|
<a class="button" href="{{ CONFIRMATION_LINK }}" target="_blank" rel="noopener noreferrer"
|
|
>Confirm account</a
|
|
>
|
|
<div class="fallback-link">
|
|
If the button does not work, copy and open this link: {{ CONFIRMATION_LINK }}
|
|
</div>
|
|
</div>
|
|
|
|
<p>If you did not create this account, you can safely ignore this message.</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="footer">
|
|
This is an automatic message from Tasknote, please do not reply.<br />
|
|
Need help? Contact <a class="link" href="mailto:ricardompcampos@gmail.com">ricardompcampos@gmail.com</a>.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|