Advertisement
Guest User

Untitled

a guest
May 20th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.95 KB | None | 0 0
  1. {% extends "emails/base.html" %}
  2. {% load staticfiles %}
  3. {% load i18n %}
  4. {% load l10n %}
  5. {% load humanize %}
  6. {% load mathfilters %}
  7. {% block email_greeting %}
  8. <tr>
  9.     <td align="center" class="mobile" style="font-family: 'Lato', sans-serif; font-size:17px; line-height:21px; color:#ffffff;font-weight: bold;letter-spacing: normal; margin-bottom: 26px;">
  10.         Psngr
  11.     </td>
  12. </tr>
  13. <tr>
  14.     <td height="26px" style="line-height:26px; font-size:26px;">&nbsp;</td>
  15. </tr>
  16. {% endblock %}
  17.  
  18. {% block email_body %}
  19. <!-- Start Wrapper -->
  20. <table style="max-width:640px; width: 100%;" cellpadding="0" cellspacing="0" border="0" class="wrapper">
  21.     {% trans "Here's your code!" as titleOTP %}
  22.     {% include 'emails/_parts/mail_title_container.html' with title=titleOTP %}
  23.     <tr>
  24.         <td align="center" bgcolor="#ffffff">
  25.             <table width="100%" cellpadding="0" cellspacing="0" border="0" class="container" bgcolor="#ffffff" align="center">
  26.                 {% trans 'You are receiving this email because there has been a sign-in attempt to your Psngr account and you have enabled 2-factor authentication. ' as subtitleStr %}
  27.                 {% trans 'If you are attempting to sign-in, please use the following code to confirm your identity: ' as subtitleStr2 %}
  28.                 {% with titleStr="Hi "|add:first_name %}
  29.                     {% include 'emails/_parts/welcome_container.html' with title=titleStr subtitle=subtitleStr subtitle2=subtitleStr2%}
  30.                 {% endwith %}
  31.             </table>
  32.             <table width="100%" cellpadding="0" cellspacing="0" border="0" class="container" bgcolor="#ffffff" align="center">
  33.               <div width="70%" bgcolor="#ffffff" style="margin-top: 30px; margin-bottom: 20px; align-content: center">
  34.                       <span align="center" valign="middle" style="font-family: 'Lato', sans-serif; font-size: 22px; border-radius: 6px; color: #24b646; border: 1px solid #24b646;line-height:24px;background-color: #ffffff;width: 180px;padding: 9px; margin-right: 20px;height: 100px;border-style: dashed;font-weight: bold;">
  35.                           {{otp}}
  36.                       </span>
  37.               </div>
  38.             </table>
  39.           <div align="center" style="font-family: 'Lato', sans-serif; font-size: 16px; font-weight: 500; padding-bottom: 15px; padding-top: 20px; width: 84%; margin-left: 8%;margin-right: 8%;height: 300px;">
  40.             <ul align="center" style="list-style:none; text-align: left; margin: 0px; padding: 0px; color: #333333;">
  41.               <li style="margin:0 0 10px 0;">{% trans 'Here are the details of the sign-in attempt:' %}</li>
  42.               <li style="margin:0 0 10px 0;">{% trans 'Date & time:' %} <strong>{{ login_details.date }} </strong><li>
  43.              <li style="margin:0 0 10px 0;">{% trans 'Account:' %} <strong>{{email}}</strong></li>
  44.               <li style="margin:0 0 10px 0;">{% trans 'Location:' %} <strong>{{login_details.country_details.country_code}}</strong></li>
  45.               <li style="margin:0 0 10px 0;">{% trans 'IP address:' %} <strong>{{login_details.ip_address}}</strong></li>
  46.               {% if login_details.device != 'Other' %}
  47.                 <li style="margin:0 0 10px 0;">{% trans 'Device:' %} <strong>{{login_details.device}}</strong></li>
  48.               {% else %}
  49.                 <li style="margin:0 0 10px 0;">{% trans 'Operating system:' %} <strong>{{login_details.os}}</strong></li>
  50.               {% endif %}
  51.               <li style="margin:0 0 10px 0;">{% trans 'Browser:'%} <strong>{{login_details.browser}}</strong></li>
  52.             </ul>
  53.                 <div align="left" style="font-family: 'Lato', sans-serif; font-size: 16px; font-weight: 500;color: #333333; margin-top: 30px;">
  54.                   {% trans "If this wasn't you, please reset your password. Like always, if you have any questions please respond to this email to open a support ticket." %}
  55.                 </div>
  56.           </div>
  57.         </td>
  58.     </tr>
  59. </table>
  60. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement