
Not really sure what happened, but clearly when I imported our backend code into our monorepo, it was not the latest version. So I'm fixing this now by putting in the latest code. I will re-apply the changes since later.
71 lines
3.7 KiB
JavaScript
71 lines
3.7 KiB
JavaScript
const signup = {
|
|
i18n: ['signupTitle', 'signupCopy1', 'signupActionText', 'questionsJustReply', 'signature'],
|
|
html: `<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
|
<tr>
|
|
<td bgcolor="#ffffff" align="center" style="padding: 10px 15px 40px 15px;" class="section-padding">
|
|
<table border="0" cellpadding="0" cellspacing="0" width="500" class="responsive-table">
|
|
<tr>
|
|
<td>
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td>
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td align="left" style="font-size: 25px; font-family: -apple-system,'BlinkMacSystemFont','Segoe UI','Roboto','Oxygen','Ubuntu','Cantarell','Fira Sans','Droid Sans','Helvetica Neue',sans-serif; color: #212121; padding-top: 30px;" class="padding-copy">__signupTitle__</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="left" style="padding: 20px 0 0 0; font-size: 16px; line-height: 25px; font-family: -apple-system,'BlinkMacSystemFont','Segoe UI','Roboto','Oxygen','Ubuntu','Cantarell','Fira Sans','Droid Sans','Helvetica Neue',sans-serif; color: #292B2C;" class="padding-copy">
|
|
__signupCopy1__
|
|
</td>
|
|
</tr>
|
|
<!-- BULLETPROOF BUTTON -->
|
|
<tr>
|
|
<td bgcolor="#ffffff" align="left">
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td bgcolor="#ffffff" align="center" style="padding: 30px 30px 30px 30px;">
|
|
<table border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td align="center" style="border-radius: 3px;" bgcolor="#212121"><a href="__signupActionLink__" target="_blank" style="font-size: 20px; font-family: -apple-system,'BlinkMacSystemFont','Segoe UI','Roboto','Oxygen','Ubuntu','Cantarell','Fira Sans','Droid Sans','Helvetica Neue',sans-serif; color: #ffffff; text-decoration: none; color: #ffffff; text-decoration: none; padding: 15px 25px; border-radius: 2px; border: 1px solid #111111; display: inline-block;">__signupActionText__</a></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="left" style="padding: 0 0 0 0; font-size: 16px; line-height: 25px; font-family: -apple-system,'BlinkMacSystemFont','Segoe UI','Roboto','Oxygen','Ubuntu','Cantarell','Fira Sans','Droid Sans','Helvetica Neue',sans-serif; color: #292B2C;" class="padding-copy">
|
|
<br>
|
|
__questionsJustReply__
|
|
<br><br>
|
|
__signature__
|
|
<br>
|
|
joost
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="left" style="padding: 20px 0 0 0; font-size: 16px; line-height: 20px; font-family: -apple-system,'BlinkMacSystemFont','Segoe UI','Roboto','Oxygen','Ubuntu','Cantarell','Fira Sans','Droid Sans','Helvetica Neue',sans-serif; color: #292B2C;" class="padding-copy">
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>`,
|
|
text: `__signupTitle__
|
|
|
|
__signupCopy1__
|
|
|
|
__signupActionLink__
|
|
|
|
__questionsJustReply__`
|
|
}
|
|
|
|
export default signup
|