-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c072cee
commit baa6b53
Showing
1 changed file
with
38 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]> <![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]> <![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> |