|
| 1 | +<?php |
| 2 | + require_once('../functions.php'); |
| 3 | + if(loggedin() and $_SESSION['username'] == 'admin') |
| 4 | + header("Location: index.php"); |
| 5 | + else if(isset($_POST['password'])) { |
| 6 | + connectdb(); |
| 7 | + $query = "SELECT salt,hash FROM users WHERE username='admin'"; |
| 8 | + $result = mysql_query($query); |
| 9 | + $fields = mysql_fetch_array($result); |
| 10 | + $currhash = crypt($_POST['password'], $fields['salt']); |
| 11 | + if($currhash == $fields['hash']) { |
| 12 | + $_SESSION['username'] = "admin"; |
| 13 | + header("Location: index.php"); |
| 14 | + } else |
| 15 | + header("Location: login.php?error=1"); |
| 16 | + } else |
| 17 | +?> |
| 18 | +<!DOCTYPE html> |
| 19 | +<html lang="en"><head> |
| 20 | +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
| 21 | + <meta charset="utf-8"> |
| 22 | + <title>Codejudge Admin Panel Login</title> |
| 23 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 24 | + <meta name="description" content=""> |
| 25 | + <meta name="author" content=""> |
| 26 | + |
| 27 | + <!-- Le styles --> |
| 28 | + <link href="../css/bootstrap.css" rel="stylesheet"> |
| 29 | + <style> |
| 30 | + body { |
| 31 | + padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */ |
| 32 | + } |
| 33 | + |
| 34 | + .footer { |
| 35 | + text-align: center; |
| 36 | + font-size: 11px; |
| 37 | + } |
| 38 | + </style> |
| 39 | + <link href="../css/bootstrap-responsive.css" rel="stylesheet"> |
| 40 | + |
| 41 | + <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements --> |
| 42 | + <!--[if lt IE 9]> |
| 43 | + <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> |
| 44 | + <![endif]--> |
| 45 | + |
| 46 | + <!-- Le fav and touch icons --> |
| 47 | + <link rel="shortcut icon" href="http://twitter.github.com/bootstrap/assets/ico/favicon.ico"> |
| 48 | + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png"> |
| 49 | + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png"> |
| 50 | + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png"> |
| 51 | + <link rel="apple-touch-icon-precomposed" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png"> |
| 52 | + </head> |
| 53 | + |
| 54 | + <body> |
| 55 | + |
| 56 | + <div class="navbar navbar-fixed-top"> |
| 57 | + <div class="navbar-inner"> |
| 58 | + <div class="container"> |
| 59 | + <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> |
| 60 | + <span class="icon-bar"></span> |
| 61 | + <span class="icon-bar"></span> |
| 62 | + <span class="icon-bar"></span> |
| 63 | + </a> |
| 64 | + <a class="brand" href="#">Codejudge</a> |
| 65 | + </div> |
| 66 | + </div> |
| 67 | + </div> |
| 68 | + |
| 69 | + <div class="container"> |
| 70 | + |
| 71 | + <?php |
| 72 | + if(isset($_GET['logout'])) |
| 73 | + echo("<div class=\"alert alert-info\">\nYou have logged out successfully!\n</div>"); |
| 74 | + else if(isset($_GET['error'])) |
| 75 | + echo("<div class=\"alert alert-error\">\nIncorrect Password!\n</div>"); |
| 76 | + ?> |
| 77 | + <h1><small>Login</small></h1> |
| 78 | + <p>Please login to use the admin panel.</p><br/> |
| 79 | + <form method="post" action="login.php"> |
| 80 | + Password: <input type="password" name="password"/><br/><br/> |
| 81 | + <input class="btn" type="submit" name="submit" value="Login"/> |
| 82 | + </form> |
| 83 | + </div> <!-- /container --> |
| 84 | + |
| 85 | +<?php |
| 86 | + include('footer.php'); |
| 87 | +?> |
0 commit comments