diff options
Diffstat (limited to 'src/Wallabag/UserBundle/Resources/views')
-rw-r--r-- | src/Wallabag/UserBundle/Resources/views/TwoFactor/email_auth_code.html.twig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Wallabag/UserBundle/Resources/views/TwoFactor/email_auth_code.html.twig b/src/Wallabag/UserBundle/Resources/views/TwoFactor/email_auth_code.html.twig new file mode 100644 index 00000000..b726d142 --- /dev/null +++ b/src/Wallabag/UserBundle/Resources/views/TwoFactor/email_auth_code.html.twig | |||
@@ -0,0 +1,18 @@ | |||
1 | {% block subject %} | ||
2 | {{ "auth_code.mailer.subject"|trans({}, 'wallabag_user') }} | ||
3 | {% endblock %} | ||
4 | |||
5 | {% block body_html %} | ||
6 | <p><b>{{ "auth_code.mailer.body.hello"|trans({'%user%': user}, 'wallabag_user') }}</b></p> | ||
7 | |||
8 | <p>{{ "auth_code.mailer.body.content"|trans({'%code%': code}, 'wallabag_user') }}</p> | ||
9 | |||
10 | <p>{{ "auth_code.mailer.body.signature"|trans({'%support%': support}, 'wallabag_user') }}</p> | ||
11 | {% endblock %} | ||
12 | |||
13 | {% block body_text %} | ||
14 | {{ "auth_code.mailer.body.hello"|trans({'%user%': user}, 'wallabag_user') }} | ||
15 | |||
16 | {{ "auth_code.mailer.body.content"|trans({'%code%': code}, 'wallabag_user') }} | ||
17 | {{ "auth_code.mailer.body.signature"|trans({'%support%': support}, 'wallabag_user') }} | ||
18 | {% endblock %} | ||