diff options
author | Puyodead1 <puyodead@proton.me> | 2023-01-19 22:34:56 -0500 |
---|---|---|
committer | Puyodead1 <puyodead@protonmail.com> | 2023-02-23 21:35:53 -0500 |
commit | 292e722f359d7eb5e106f908c07c948d6a10a006 (patch) | |
tree | a3ca688fe1a7938ba382217971667b3b3a81d69e | |
parent | Add an email template for email verification (diff) | |
download | server-292e722f359d7eb5e106f908c07c948d6a10a006.tar.xz |
update verify email template to add target
-rw-r--r-- | assets/email_templates/verify_email.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/assets/email_templates/verify_email.html b/assets/email_templates/verify_email.html index 55825cfc..041378d9 100644 --- a/assets/email_templates/verify_email.html +++ b/assets/email_templates/verify_email.html @@ -61,7 +61,13 @@ below to verify your email address: </p> <div> - <div style="display: flex; justify-content: center; padding-bottom: 10px;"> + <div + style=" + display: flex; + justify-content: center; + padding-bottom: 10px; + " + > <a class="btn" href="{verificationUrl}" target="_blank" >Verify Email</a > @@ -72,14 +78,14 @@ display: flex; justify-content: center; flex-direction: column; - text-align: center + text-align: center; " > <p> Alternatively, you can directly paste this link into your browser: </p> - <a href="{verificationUrl}" + <a href="{verificationUrl}" target="_blank" >{verificationUrl}</a > </div> |