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>
|