Skip to content

Commit

Permalink
Update verify_account_email.html
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-slaugh committed Nov 20, 2023
1 parent c072cee commit baa6b53
Showing 1 changed file with 38 additions and 32 deletions.
70 changes: 38 additions & 32 deletions templates/verify_account_email.html
Original file line number Diff line number Diff line change
@@ -1,35 +1,41 @@
<p>Hi {{ name }},</p>
<!DOCTYPE html>
<html>
<head>
<title>Email Verification</title>
<style>
.button {
background-color: #377ef9;
color: #ffffff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-family: Helvetica, Arial, sans-serif;
}
</style>
</head>
<body>
<p>Hi {{ name }},</p>

<p>
Thank you for creating an account with HydroServer. Before you continue, we need to verify the email you provided
really belongs to you. To activate your account and start using HydroServer, please click "Verify Email" below.
</p>
<p>
Thank you for creating an account with HydroServer. Before you continue,
we need to verify the email you provided really belongs to you. To
activate your account and start using HydroServer, please click the
"Verify Email" button or URL below.
</p>

<center>
<table align="center" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td align="center" style="padding: 10px;">
<table border="0" class="mobile-button" cellspacing="0" cellpadding="0">
<tr>
<td align="center" bgcolor="#377ef9" style="background-color: #377ef9; margin: auto; max-width: 600px;
-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; padding: 15px 20px;
" width="100%">
<!--[if mso]>&nbsp;<![endif]-->
<a href="{{ app_client_url }}/activate?uid={{ uid }}&token={{ token }}" target="_blank" style="16px;
font-family: Helvetica, Arial, sans-serif; color: #ffffff; font-weight:normal; text-align:center;
background-color: #377ef9; text-decoration: none; border: none; -webkit-border-radius: 5px;
-moz-border-radius: 5px; border-radius: 5px; display: inline-block;">
<span style="font-size: 16px; font-family: Helvetica, Arial, sans-serif; color: #ffffff;
font-weight:normal; line-height:1.5em; text-align:center;">Verify Email</span>
</a>
<!--[if mso]>&nbsp;<![endif]-->
</td>
</tr>
</table>
</td>
</tr>
</table>
</center>
<p style="text-align: center">
<a
href="{{ app_client_url }}/activate?uid={{ uid }}&token={{ token }}"
class="button"
target="_blank"
>
Verify Email
</a>
</p>

<p>Thanks,</p>
<p>The HydroServer Team</p>
<p>{{ app_client_url }}/activate?uid={{ uid}}&token={{ token }}</p>

<p>Thanks,</p>
<p>The HydroServer Team</p>
</body>
</html>

0 comments on commit baa6b53

Please sign in to comment.