mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-13 05:15:21 +02:00
97cec66083
Adds twig/inky-extra and twig/cssinliner-extra to build the password reset and email confirmation emails from a shared responsive layout, styled after the quiz's green/black look, with Dutch copy in the show's dramatic tone.
23 lines
778 B
Twig
23 lines
778 B
Twig
{% extends 'emails/layout.html.twig' %}
|
|
|
|
{% block preheader %}Bevestig je e-mailadres voor Tijd voor de test.{% endblock %}
|
|
|
|
{% block heading %}Nog één stap voor je mee mag doen{% endblock %}
|
|
|
|
{% block body %}
|
|
<p class="text">Beste speler,</p>
|
|
<p class="text">
|
|
Welkom bij Tijd voor de test! Voor je echt aan de slag kunt, moeten we nog één ding
|
|
weten: of jij écht bent wie je zegt dat je bent. Klik daarom op de knop hieronder.
|
|
</p>
|
|
|
|
<center><button href="{{ signedUrl|raw }}">Bevestig e-mailadres</button></center>
|
|
|
|
<p class="text">
|
|
Deze link verloopt over {{ expiresAtMessageKey|trans(expiresAtMessageData, 'VerifyEmailBundle') }}, dus
|
|
wacht niet te lang.
|
|
</p>
|
|
|
|
<p class="text">Veel plezier!</p>
|
|
{% endblock %}
|