-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
74 lines (62 loc) · 3.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
<!DOCTYPE html>
<html lang="en">
<?php
require_once 'apps/control/config.php';
$template = new template();
?>
<head>
<title>Matrix Admin</title><meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="lib/css/bootstrap.min.css" />
<link rel="stylesheet" href="lib/css/bootstrap-responsive.min.css" />
<link rel="stylesheet" href="lib/css/matrix-login.css" />
<link rel="stylesheet" href="lib/css/messages.css" />
<link href="lib/css/font-awesome/css/font-awesome.css" rel="stylesheet"/>
<!-- <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,800' rel='stylesheet' type='text/css'> -->
</head>
<body>
<div class="loader"></div>
<div id="loginbox">
<form id="loginform" class="form-vertical" action="apps/model/userMgt/_login.php" method="post">
<div class="control-group normal_text"> <h1>PMS</h1></div>
<?php
$template->showMessage();
?>
<div class="control-group">
<div class="controls">
<div class="main_input_box">
<span class="add-on bg_lg"><i class="icon-user"> </i></span><input type="text" name="login_username" placeholder="Username" required/>
</div>
</div>
</div>
<div class="control-group">
<div class="controls">
<div class="main_input_box">
<span class="add-on bg_ly"><i class="icon-lock"></i></span><input type="password" name="login_password" placeholder="Password" required />
</div>
</div>
</div>
<div class="form-actions">
<span class="pull-left"><a href="#" class="flip-link btn btn-info" id="to-recover">Lost password?</a></span>
<span class="pull-right"><button type="submit" name="login" class="btn btn-success" /> Login</button></span>
</div>
</form>
<form id="recoverform" action="#" class="form-vertical">
<p class="normal_text">Enter your e-mail address below and we will send you instructions how to recover a password.</p>
<div class="controls">
<div class="main_input_box">
<span class="add-on bg_lo"><i class="icon-envelope"></i></span><input type="text" placeholder="E-mail address" />
</div>
</div>
<div class="form-actions">
<span class="pull-left"><a href="#" class="flip-link btn btn-success" id="to-login">« Back to login</a></span>
<span class="pull-right"><a class="btn btn-info"/>Recover</a></span>
</div>
</form>
</div>
<script src="lib/js/jquery.min.js"></script>
<script src="lib/js/matrix.login.js"></script>
<script src="lib/js/matrix.form_validation.js"></script>
<script src="lib/js/jquery.validate.js"></script>
</body>
</html>