diff options
author | Puyodead1 <puyodead@proton.me> | 2023-01-20 10:43:06 -0500 |
---|---|---|
committer | Puyodead1 <puyodead@protonmail.com> | 2023-02-23 21:35:54 -0500 |
commit | 689b710c9e61646e62d3aea21d616402665d2f66 (patch) | |
tree | 6a63cf20ae97601bd2ee90067c47f358a0dd2ad0 /assets/email_templates/password_changed.html | |
parent | Add other email templates (diff) | |
download | server-689b710c9e61646e62d3aea21d616402665d2f66.tar.xz |
Fix template rendering and use verify email template
email html is weird, some stuff isn't supported.
Diffstat (limited to 'assets/email_templates/password_changed.html')
-rw-r--r-- | assets/email_templates/password_changed.html | 77 |
1 files changed, 41 insertions, 36 deletions
diff --git a/assets/email_templates/password_changed.html b/assets/email_templates/password_changed.html index 3f762702..399108a2 100644 --- a/assets/email_templates/password_changed.html +++ b/assets/email_templates/password_changed.html @@ -4,57 +4,62 @@ <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <meta http-equiv="Content-Type" content="text/html charset=UTF-8" /> <title>{instanceName} Password Changed</title> <style> * { font-size: 16px; line-height: 24px; + font-family: Arial, Helvetica, sans-serif; } - body { + p { color: white; - font-family: Arial, Helvetica, sans-serif; - background-color: #202225; + } + .ExternalClass { + width: 100%; } </style> </head> <body> - <img - src="https://raw.githubusercontent.com/fosscord/fosscord/master/assets-rebrand/svg/Fosscord-Wordmark-Orange.svg" - alt="Branding" - style=" - width: 100%; - max-width: 200px; - margin: 0 auto; - display: block; - padding: 20px; - " - /> - <div - style=" - width: 100%; - max-width: 500px; - margin: 0 auto; - padding: 40px 50px; - background-color: rgba(50, 53, 59, 1); - border-radius: 5px; - " - > - <p + <div style="background-color: #202225;"> + <img + src="https://raw.githubusercontent.com/fosscord/fosscord/master/assets-rebrand/svg/Fosscord-Wordmark-Orange.svg" + alt="Branding" + style=" + width: 100%; + max-width: 200px; + margin: 0 auto; + display: block; + padding: 20px; + " + /> + <div style=" - font-weight: 600; - font-size: 20px; - letter-spacing: 0.27px; - line-height: 24px; + width: 100%; + max-width: 500px; + margin: 0 auto; + padding: 40px 50px; + background-color: #32353b; + border-radius: 5px; " > - Hey {username}, - </p> - <p>Your {instanceName} password has been changed.</p> - <p> - If this wasn't done by you, please immediately reset the - password to your {instanceName} account. - </p> + <p + style=" + font-weight: 600; + font-size: 20px; + letter-spacing: 0.27px; + line-height: 24px; + " + > + Hey {userUsername}, + </p> + <p>Your {instanceName} password has been changed.</p> + <p> + If this wasn't done by you, please immediately reset the + password to your {instanceName} account. + </p> + </div> </div> </body> </html> |