Viewing file: indexbackup.php (4.7 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php include('login.php'); // Includes Login Script
if(isset($_SESSION['login_user'])){ header("location: branchpage.php"); } ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>Aadhar Login Account</title> <link href="style.css" rel="stylesheet" type="text/css"> <script> javascript:window.resizeTo((screen.width-150),(screen.height-50));window.moveTo(0,0) </script> <style type="text/css"> input[type=text], textarea { border: 1px solid #ccc; } input[type=text]:focus, textarea:focus { background-color: #FFBFFF; border: 1px solid #ccc; } </style> <style> <!-- .styling{ background-color:black; color:lime; font: bold 16px MS Sans Serif; padding: 3px; } a:link { text-decoration: none; color: #000; } a:visited { text-decoration: none; color: #000; } a:hover { text-decoration: none; } a:active { text-decoration: none; } body,td,th { color: #000; } .nmsw_zxz { background-color:rgb(0,204,0); } --> </style> <script language="JavaScript" type="text/javascript"> <!-- function namosw_cell_rollover(cell, classname) { if (document.all || document.getElementById) { cell.classBackup = cell.className; cell.className = classname; } }
function namosw_cell_rollout(cell) { if (document.all || document.getElementById) { cell.className = cell.classBackup; } } // --> </script> </head> <center> <body text="#000000">
<script>
/*Random background color- by javascriptkit.com Visit JavaScript Kit (http://javascriptkit.com) for script Credit must stay intact for use*/
//Enter list of bgcolors: var bgcolorlist=new Array("#0033CC", "#000000", "#80FF80", "#EAEAFF", "#C9FFA8", "#F7F7F7", "#FFFFFF", "#DDDD00")
document.body.style.background=bgcolorlist[Math.floor(Math.random()*bgcolorlist.length)] </script>
<table width="953" bgcolor="#cccccc" border="0"> <tr> <td align="center" valign="top" bgcolor="#ffffff"><h1><img src="images/aadharbanner.jpg" width="948" height="120" /></h1></td> </tr> <tr> <td align="center" valign="top" bgcolor="#ff0044"><script>
/*Current date script credit: JavaScript Kit (www.javascriptkit.com) Over 200+ free scripts here! */
var mydate=new Date() var year=mydate.getYear() if (year < 1000) year+=1900 var day=mydate.getDay() var month=mydate.getMonth() var daym=mydate.getDate() if (daym<10) daym="0"+daym var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday") var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December") document.write("<small><font color='000000' face='Arial'><b>"+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+"</b></font></small>")
</script>
</td> </tr> <tr> <td align="center" valign="top" bgcolor="#66cccc"><span id="liveclock"> </span>
<script language="javascript" type="text/javascript"> <!--
/* Upper Corner Live clock script credit: JavaScript Kit (www.javascriptkit.com) More free scripts here! */
function show5(){ if (!document.layers&&!document.all&&!document.getElementById) return
var Digital=new Date() var hours=Digital.getHours() var minutes=Digital.getMinutes() var seconds=Digital.getSeconds()
var dn="PM" if (hours<12) dn="AM" if (hours>12) hours=hours-12 if (hours==0) hours=12
if (minutes<=9) minutes="0"+minutes if (seconds<=9) seconds="0"+seconds //change font size here to your desire myclock="<b>Current Time:</br>"+hours+":"+minutes+":" +seconds+" "+dn+"</b>" if (document.layers){ document.layers.liveclock.document.write(myclock) document.layers.liveclock.document.close() } else if (document.all) liveclock.innerHTML=myclock else if (document.getElementById) document.getElementById("liveclock").innerHTML=myclock setTimeout("show5()",1000) }
window.onload=show5 //--> </script>
</td> </tr> <tr> <td align="center" valign="top" height="600" bgcolor="#66cccc"> <div id="main"> <div id="login"> <h2>Login Form</h2> <form action="" method="post"> <label>UserName :</label> <input id="name" name="username" placeholder="username" type="text"> <label>Password :</label> <input id="password" name="password" placeholder="**********" type="password"> <input name="submit" type="submit" value=" Login "> <span><?php echo $error; ?></span> </form> </div> </div>
</td> </tr> <tr> <td align="center" bgcolor="#ff0044"><p>All Right Reserved by Aadhar Mutual Nidhi Ltd.</p> <p><a href="http://www.rcgsoftech.com">Developed by RCG Softech</a></p></td> </tr> </table></form> </body></center> </html>
|