forked from Alanaktion/MCHostPanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
76 lines (70 loc) · 2.24 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
require_once 'inc/lib.php';
session_start();
// Destroy session on ?logout
if (isset($_GET['logout'])) {
$_SESSION = array();
if (ini_get('session.use_cookies')) {
$params = session_get_cookie_params();
setcookie(session_name(), '', time() - 42000, $params['path'], $params['domain'], $params['secure'], $params['httponly']);
}
session_destroy();
}
// Redirect logged in users to the file manager
if (!empty($_SESSION['user']) && $user = user_info($_SESSION['user'])) {
header('Location: dashboard.php');
}
?><!doctype html>
<html>
<head>
<title>MCHostPanel</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/smooth.css" id="smooth-css">
<meta name="author" content="Alan Hardman (http://phpizza.com)">
<style type="text/css">
body {
background-image: url(img/bg.jpg);
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
}
</style>
</head>
<body>
<noscript>
<p class="alert alert-warning"><strong>Enable Javascript:</strong> Javascript is required to use MCHostPanel.</p>
</noscript>
<form class="modal form-horizontal" action="dashboard.php" method="post">
<div class="modal-header">
<h3>MCHostPanel</h3>
</div>
<div class="modal-body">
<?php
if (!empty($_GET['error']) && $_GET['error'] == 'badlogin')
echo '<p class="alert alert-error">Invalid login details.</p>';
?>
<div class="control-group">
<label class="control-label" for="user">Username</label>
<div class="controls">
<div class="input-prepend">
<span class="add-on"><i class="icon-user"></i></span>
<input class="span2" type="text" name="user" id="user">
</div>
</div>
</div>
<div class="control-group">
<label class="control-label" for="pass">Password</label>
<div class="controls">
<div class="input-prepend">
<span class="add-on"><i class="icon-lock"></i></span>
<input class="span2" type="password" name="pass" id="pass">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-primary" type="submit">Log In</button>
</div>
</form>
<small class="muted pull-left" style="position:absolute;bottom:15px;left:15px;">© <?php echo date('Y'); ?> <a href="https://phpizza.com/">Alan Hardman</a></small>
</body>