Files
tasknote/mailgun-templates/password_change_confirmation.html
T

146 lines
2.7 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Password Changed</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;
}
.notice {
margin: 0 0 20px;
padding: 14px;
background-color: #f7fbf8;
border-left: 4px solid #2eb745;
border-radius: 4px;
color: #4c6169;
font-size: 14px;
}
.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">Your password was changed</p>
</td>
</tr>
<tr>
<td class="content">
<p>Hello,</p>
<p>This confirms that your Tasknote account password was successfully changed.</p>
<p class="notice">
If this was you, no action is required. If this was not you, secure your account
right away and contact
<a class="link" href="mailto:ricardompcampos@gmail.com">ricardompcampos@gmail.com</a>.
</p>
<p>Thank you for helping keep your account safe.</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>