-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: add mail template for TOS signature
- Loading branch information
Showing
3 changed files
with
45 additions
and
4 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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{% extends "base_mail.html" %} | ||
|
||
{% block title %}MyECL - You signed the Terms of Service for MyECLPay {% endblock %} | ||
|
||
{% block french_message %} | ||
<h1> Vous avez signé les Conditions Générales d'Utilisation de MyECLPay</h1> | ||
<p> | ||
Vous avez signé les Conditions Générales d'Utilisation de MyECLPay. | ||
Vous pouvez les consulter à tout moment en cliquant sur ce | ||
<a href="https://myecl.fr/myeclpay/tos">lien</a>. | ||
|
||
<br><br> | ||
|
||
Si vous n'êtes pas à l'origine de cette action, changez immédiatement votre mot de passe, votre compte a pu être | ||
compromis. | ||
|
||
</p> | ||
{% endblock %} | ||
|
||
{% block english_message %} | ||
<h1> You signed the Terms of Service for MyECLPay</h1> | ||
<p> | ||
You signed the Terms of Service for MyECLPay. | ||
You can consult them at any time by clicking on this | ||
<a href="https://myecl.fr/myeclpay/tos">link</a>. | ||
|
||
<br><br> | ||
|
||
If you did not initiate this action, change your password immediately, your account may have been compromised. | ||
</p> | ||
{% endblock %} |