Skip to content

Commit f378911

Browse files
authored
Merge pull request #194 from hackmcgill/bugfix/172-linksAreEscaped
Fix links
2 parents e7045d3 + 7b9edbd commit f378911

4 files changed

Lines changed: 32 additions & 16 deletions

File tree

assets/email/AccountConfirmation.hbs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -413,12 +413,13 @@
413413
<p>
414414
Hi {{firstName}},
415415
<br><br>
416-
To start your McHacks 6 application, we first need to confirm your email.
416+
To start your McHacks 6 application, we first need to confirm your
417+
email.
417418
<br><br>
418419
Get that sorted by clicking below!
419420
</p>
420421
<div class="center">
421-
<a href="{{link}}" class="button">
422+
<a href="{{{link}}}" class="button">
422423
Confirm your email
423424
</a>
424425
</div>
@@ -461,6 +462,6 @@
461462
</tr>
462463
</table>
463464
</center>
464-
</body>
465+
</body>
465466

466467
</html>

assets/email/AccountInvitation.hbs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -418,12 +418,15 @@
418418
Click the button below to get things started!
419419
</p>
420420
<div class="center">
421-
<a href="{{link}}" class="button">
421+
<a href="{{{link}}}" class="button">
422422
Create my account
423423
</a>
424424
</div>
425425
<p>
426-
In the meantime, follow us on <a href="https://facebook.com/mcgillhacks">Facebook</a>, <a href="https://twitter.com/mcgillhacks">Twitter</a>, and <a href="https://instagram.com/mcgillhacks">Instagram</a> for important updates and news about McHacks 6! If you have any questions, feel free to reach out at <a href="mailto:contact@mchacks.ca">contact@mchacks.ca</a>.
426+
In the meantime, follow us on <a href="https://facebook.com/mcgillhacks">Facebook</a>,
427+
<a href="https://twitter.com/mcgillhacks">Twitter</a>, and <a href="https://instagram.com/mcgillhacks">Instagram</a>
428+
for important updates and news about McHacks 6! If you have any
429+
questions, feel free to reach out at <a href="mailto:contact@mchacks.ca">contact@mchacks.ca</a>.
427430
</p>
428431
<p>
429432
<br>
@@ -464,6 +467,6 @@
464467
</tr>
465468
</table>
466469
</center>
467-
</body>
470+
</body>
468471

469472
</html>

assets/email/ResetPassword.hbs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -413,12 +413,14 @@
413413
<p>
414414
Hi {{firstName}},
415415
<br><br>
416-
Looks like you forgot your password. That's okay, it happens now and then!
416+
Looks like you forgot your password. That's okay, it happens now and
417+
then!
417418
<br><br>
418-
Click the button below to get things started again. It will lead you to a page where you can reset your password.
419+
Click the button below to get things started again. It will lead you to
420+
a page where you can reset your password.
419421
</p>
420422
<div class="center">
421-
<a href="{{link}}" class="button">
423+
<a href="{{{link}}}" class="button">
422424
Reset my password
423425
</a>
424426
</div>
@@ -461,6 +463,6 @@
461463
</tr>
462464
</table>
463465
</center>
464-
</body>
466+
</body>
465467

466468
</html>

assets/email/statusEmail/Accepted.hbs

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -413,23 +413,33 @@
413413
<p>
414414
Congratulations, {{firstName}}! 🎉
415415
<br><br>
416-
We are thrilled to invite you as a hacker at McHacks 6! We can't wait to see what you dream, develop, and deploy within 24 hours on February 2-3, 2019.
416+
We are thrilled to invite you as a hacker at McHacks 6! We can't wait
417+
to see what you dream, develop, and deploy within 24 hours on February
418+
2-3, 2019.
417419
<br><br>
418420
Here are your next steps:
419421
<br><br>
420-
<li>Confirm your attendance on our hacker dashboard no later than (date)</li>
422+
<li>Confirm your attendance on our hacker dashboard no later than
423+
(date)</li>
421424
<li>Join our FB group to mingle with other hackers coming to McHacks 6</li>
422425
<br><br>
423-
We've received an overwhelming number of applicants this year for only 600 spots. If you can no longer attend McHacks 6, please let us know by withdrawing your application on our <a href="https://app.mchacks.ca/">hacker dashboard</a> so we can pass your spot along to someone who is on the waitlist.
426+
We've received an overwhelming number of applicants this year for only
427+
600 spots. If you can no longer attend McHacks 6, please let us know by
428+
withdrawing your application on our <a href="https://app.mchacks.ca/">hacker
429+
dashboard</a> so we can pass your spot along to someone who is on
430+
the waitlist.
424431
</p>
425432
<div class="center">
426-
<a href="{{link}}" class="button">
433+
<a href="{{{link}}}" class="button">
427434
RSVP
428435
</a>
429436
</div>
430437
<p>
431438
<br>
432-
In the meantime, follow us on <a href="https://facebook.com/mcgillhacks">Facebook</a>, <a href="https://twitter.com/mcgillhacks">Twitter</a>, and <a href="https://instagram.com/mcgillhacks">Instagram</a> for important updates and news about McHacks 6! If you have any questions, feel free to reach out at <a href="mailto:contact@mchacks.ca">contact@mchacks.ca</a>.
439+
In the meantime, follow us on <a href="https://facebook.com/mcgillhacks">Facebook</a>,
440+
<a href="https://twitter.com/mcgillhacks">Twitter</a>, and <a href="https://instagram.com/mcgillhacks">Instagram</a>
441+
for important updates and news about McHacks 6! If you have any
442+
questions, feel free to reach out at <a href="mailto:contact@mchacks.ca">contact@mchacks.ca</a>.
433443
</p>
434444
<p>
435445
<br>
@@ -470,6 +480,6 @@
470480
</tr>
471481
</table>
472482
</center>
473-
</body>
483+
</body>
474484

475485
</html>

0 commit comments

Comments
 (0)