Inboxes

Create an inbox to save and track emails. It's free!

+New inbox

<!DOCTYPE html>
<!--
The MIT License (MIT). //choosealicense.com/licenses/mit/

Copyright (c) Ted Goas

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-->
<html lang="en" xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <meta charset="utf-8"/>
  <!-- utf-8 works for most cases -->
  <meta content="width=device-width" name="viewport"/>
  <!-- Forcing initial-scale shouldn't be necessary -->
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <!-- Use the latest (edge) version of IE rendering engine -->
  <meta name="x-apple-disable-message-reformatting"/>
  <!-- Disable auto-scale in iOS 10 Mail entirely -->
  <meta content="telephone=no,address=no,email=no,date=no,url=no" name="format-detection"/>
  <!-- Tell iOS not to automatically link certain text strings. -->
  <title>
  </title>
  <!-- The title tag shows in email notifications, like Android 4.4. -->
  <!-- Web Font / @font-face : BEGIN -->
  <!-- NOTE: If web fonts are not required, lines 10 - 27 can be safely removed. -->
  <!-- Desktop Outlook chokes on web font references and defaults to Times New Roman, so we force a safe fallback font. -->
  <!--[if mso]>
    <style>
        * {
            font-family: Helvetica, Arial, sans-serif !important;
        }
    </style>
    <![endif]-->
  <!-- All other clients get the webfont reference; some will render the font and others will silently fail to the fallbacks. More on that here: //stylecampaign.com/blog/2015/02/webfont-support-in-email/ -->
  <!--[if !mso]><!-->
  <!-- insert web font reference, eg: <link href='https://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'> -->
  <!--<![endif]-->
  <!-- Web Font / @font-face : END -->
  <!-- CSS Reset : BEGIN -->
  <style>
   /* What it does: Remove spaces around the email design added by some email clients. */
        /* Beware: It can remove the padding / margin and add a background color to the compose a reply window. */
        html,
        body {
            margin: 0 !important;
            padding: 0 !important;
            height: 100% !important;
            width: 100% !important;
        }

        /* What it does: Stops email clients resizing small text. */
        * {
            -ms-text-size-adjust: 100%;
            -webkit-text-size-adjust: 100%;
        }

        /* What it does: Centers email on Android 4.4 */
        div[style*="margin: 16px 0"] {
            margin: 0 !important;
        }

        /* What it does: Stops Outlook from adding extra spacing to tables. */
        table,
        td {
            mso-table-lspace: 0pt !important;
            mso-table-rspace: 0pt !important;
        }

        /* What it does: Fixes webkit padding issue. */
        table {
            border-spacing: 0 !important;
            border-collapse: collapse !important;
            table-layout: fixed !important;
            margin: 0 auto !important;
        }

        /* What it does: Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */
        a {
            text-decoration: none;
        }

        /* What it does: Uses a better rendering method when resizing images in IE. */
        img {
            -ms-interpolation-mode: bicubic;
        }

        /* What it does: A work-around for email clients meddling in triggered links. */
        a[x-apple-data-detectors],
        /* iOS */
        .unstyle-auto-detected-links a,
        .aBn {
            border-bottom: 0 !important;
            cursor: default !important;
            color: inherit !important;
            text-decoration: none !important;
            font-size: inherit !important;
            font-family: inherit !important;
            font-weight: inherit !important;
            line-height: inherit !important;
        }

        /* What it does: Prevents Gmail from changing the text color in conversation threads. */
        .im {
            color: inherit !important;
        }

        /* What it does: Prevents Gmail from displaying a download button on large, non-linked images. */
        .a6S {
            display: none !important;
            opacity: 0.01 !important;
        }

        /* If the above doesn't work, add a .g-img class to any image in question. */
        img.g-img+div {
            display: none !important;
        }

        /* What it does: Removes right gutter in Gmail iOS app: https://github.com/TedGoas/Cerberus/issues/89  */
        /* Create one of these media queries for each additional viewport size you'd like to fix */

        /* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
        @media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
            u~div .email-container {
                min-width: 320px !important;
            }
        }

        /* iPhone 6, 6S, 7, 8, and X */
        @media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
            u~div .email-container {
                min-width: 375px !important;
            }
        }

        /* iPhone 6+, 7+, and 8+ */
        @media only screen and (min-device-width: 414px) {
            u~div .email-container {
                min-width: 414px !important;
            }
        }
  </style>
  <!-- What it does: Makes background images in 72ppi Outlook render at correct size. -->
  <!--[if gte mso 9]>
    <xml>
        <o:OfficeDocumentSettings>
            <o:AllowPNG/>
            <o:PixelsPerInch>96</o:PixelsPerInch>
        </o:OfficeDocumentSettings>
    </xml>
    <![endif]-->
  <!-- CSS Reset : END -->
  <!-- Progressive Enhancements : BEGIN -->
  <style>
   /* Media Queries */
        @media screen and (max-width: 600px) {

            .email-container {
                width: 100% !important;
                margin: auto !important;
            }

            /* What it does: Forces table cells into full-width rows. */
            .stack-column,
            .stack-column-center {
                display: block !important;
                width: 100% !important;
                max-width: 100% !important;
                direction: ltr !important;
            }

            /* And center justify these ones. */
            .stack-column-center {
                text-align: center !important;
            }

            /* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */
            .center-on-narrow {
                text-align: center !important;
                display: block !important;
                margin-left: auto !important;
                margin-right: auto !important;
                float: none !important;
            }

            table.center-on-narrow {
                display: inline-block !important;
            }

            /* What it does: Adjust typography on small screens to improve readability */
            /*.email-container p {*/
            /*    font-size: 17px !important;*/
            /*}*/
        }
  </style>
  <!-- Progressive Enhancements : END -->
 </head>
 <!--
	The email background color (#fdfdfd) is defined in three places:
	1. body tag: for most email clients
	2. center tag: for Gmail and Inbox mobile apps and web versions of Gmail, GSuite, Inbox, Yahoo, AOL, Libero, Comcast, freenet, Mail.ru, Orange.fr
	3. mso conditional: For Windows 10 Mail
-->
 <body style="margin: 0; padding: 0 !important; mso-line-height-rule: exactly; background-color: #fafafa" width="100%">
  <center style="width: 100%; background-color: #fafafa">
   <!--[if mso | IE]>
    <table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%" style="background-color: #fafafa">
    <tr><td>
    <![endif]-->
   <!-- Email Body : BEGIN -->
   <table align="center" border="0" cellpadding="0" cellspacing="0" class="email-container" style="margin: auto" width="100%">
    <!-- Email Header : BEGIN -->
    <tr>
     <td style="background-color: rgba(0,0,0,0);" width="100%">
      <a>
      </a>
      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
       <tr>
        <td style="text-align: center; padding: 16px 0">
         <img alt="Parade" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fparade.com%252F.image%252FMTk2NTUzNTU4ODczNjE0MzAz%252Fparade_logo_login.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZwYXJhZGUuY29tJSIsInRpbWUiOjE3NTgwNjQ5MDMuNDA2NTM3fQ:1uyezX:iP0FqWDbFK0mQmlKxT-h9WGxFkAsqKdGDUiD70hIvzg" style="display:block; height: 40px; margin:auto; background-color: rgba(0,0,0,0); font-family: Helvetica, Arial, sans-serif; font-size: 15px; line-height: 15px;"/>
        </td>
       </tr>
      </table>
     </td>
    </tr>
    <!-- Email Header : END -->
    <!-- 1 Column Text + Button : BEGIN -->
    <tr>
     <td>
      <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
       <tr>
        <td align="center" style="padding: 20px; font-family: Helvetica, Arial, sans-serif; font-size: 24px; font-weight: bold; line-height: 30px; color: #212121;">
         Parade
        </td>
       </tr>
       <tr>
        <td align="center" style="padding: 20px; font-family: Helvetica, Arial, sans-serif; font-size: 16px; line-height: 20px; color: #212121;">
         <p style="margin: 0 0 10px;">
          To continue your login, please click the link below. This link is a one-time use link that will expire in 6 hours.
         </p>
        </td>
       </tr>
       <tr>
        <td align="center" style="padding: 20px; font-family: Helvetica, Arial, sans-serif; font-size: 16px; line-height: 20px; color: #212121;">
         <a style="display: block; width: 150px; border: 2px solid #999999; padding: 10px; text-align: center; border-radius: 10px;">
          Click Here
         </a>
        </td>
       </tr>
      </table>
     </td>
    </tr>
    <!-- 1 Column Text + Button : END -->
    <!-- Footer : BEGIN -->
    <tr>
     <table cellpadding="0" cellspacing="0" role="presentation" style="border-top: 1px solid #fafafa" width="100%">
      <tr height="24px">
       <td align="center">
        <div style="width: 85%; border-top: 1px solid rgba(0, 0, 0, 0.12)">
        </div>
       </td>
      </tr>
      <tr>
       <td style="text-align: center; padding: 16px 0">
        <img alt="A Channel by the Arena Group" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.saymedia-content.com%252F.image%252Fcs_srgb%252FMTk2NTU1ODA4ODk5NjA2MzM0%252Ftst_footer_channel-2.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMuc2F5bSIsInRpbWUiOjE3NTgwNjQ5MDMuNDA3MjMxM30:1uyezX:LtdzDdVSN1v5-6wWMM2noqqpxoOJcoy6Ij_lI_TYFhQ" style="display:block; height: 80px; margin:auto; background-color: rgba(0,0,0,0); font-family: Helvetica, Arial, sans-serif; font-size: 15px; line-height: 15px;"/>
       </td>
      </tr>
      <tr>
       <td align="center" style="font-family: Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; color: #757575;">
        <p style="margin: 0 0 10px;">
         <a style="color: #757575; text-decoration: underline">
          Terms &amp; Conditions
         </a>
         ·
         <a style="color: #757575; text-decoration: underline">
          Privacy Policy
         </a>
        </p>
       </td>
      </tr>
     </table>
    </tr>
    <!-- Footer : END -->
    <!-- Clear Spacer : BEGIN -->
    <tr>
     <td aria-hidden="true" height="40" style="font-size: 0px; line-height: 0px;">
     </td>
    </tr>
    <!-- Clear Spacer : END -->
   </table>
   <!-- Email Body : END -->
   <!--[if mso | IE]>
    </td></tr>
    </table>
    <![endif]-->
  </center>
 </body>
</html>