-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-out.php
112 lines (92 loc) · 5 KB
/
index-out.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?= $config->getProjectName() ?></title>
<base href="<?= $config->getBaseUrl() ?>">
<!-- Global stylesheets -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,300,100,500,700,900" rel="stylesheet" type="text/css">
<link href="<?= $assets->getLimitless() ?>css/icons/icomoon/styles.css" rel="stylesheet" type="text/css">
<link href="<?= $assets->getLimitless() ?>css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="<?= $assets->getLimitless() ?>css/core.css" rel="stylesheet" type="text/css">
<link href="<?= $assets->getLimitless() ?>css/components.css" rel="stylesheet" type="text/css">
<link href="<?= $assets->getLimitless() ?>css/colors.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="<?= $assets->getSweetAlert() ?>sweetalert.css"/>
<!-- /global stylesheets -->
<!-- Core JS files -->
<script type="text/javascript" src="<?= $assets->getLimitless() ?>js/plugins/loaders/pace.min.js"></script>
<script type="text/javascript" src="<?= $assets->getLimitless() ?>js/core/libraries/jquery.min.js"></script>
<script type="text/javascript" src="<?= $assets->getLimitless() ?>js/core/libraries/bootstrap.min.js"></script>
<script type="text/javascript" src="<?= $assets->getLimitless() ?>js/plugins/loaders/blockui.min.js"></script>
<script type="text/javascript" src="<?= $assets->getLimitless() ?>js/plugins/notifications/bootbox.min.js"></script>
<!-- /core JS files -->
<!-- Theme JS files -->
<script type="text/javascript" src="<?= $assets->getLimitless() ?>js/plugins/forms/styling/uniform.min.js"></script>
<script type="text/javascript" src="<?= $assets->getLimitless() ?>js/core/app.js"></script>
<script type="text/javascript" src="<?= $assets->getLimitless() ?>js/pages/login.js"></script>
<!-- /theme JS files -->
<style>
body .fr-box div:last-child a[href*="https://www.froala.com/wysiwyg-editor"]{
display:none !important;
}
body a[href*="https://www.000webhost.com/"]{
display:none !important;
}
</style>
</head>
<body class="login-container">
<!-- Page container -->
<div class="page-container">
<!-- Page content -->
<div class="page-content">
<!-- Main content -->
<div class="content-wrapper">
<!-- Content area -->
<div class="content">
<!-- Simple login form -->
<form action="_action/adminHandler.php" method="post" data-onfinish="reload" id="loginForm">
<input type="hidden" name="action" value="login">
<div class="panel panel-body login-form">
<div class="text-center">
<div class="icon-object border-slate-300 text-slate-300"><i class="icon-reading"></i></div>
<h5 class="content-group">Login to your Admin account <small class="display-block">Enter your credentials below</small></h5>
</div>
<div class="form-group has-feedback has-feedback-left">
<input type="text" name="username" class="form-control" placeholder="Username">
<div class="form-control-feedback">
<i class="icon-user text-muted"></i>
</div>
</div>
<div class="form-group has-feedback has-feedback-left">
<input type="password" name="password" class="form-control" placeholder="Password">
<div class="form-control-feedback">
<i class="icon-lock2 text-muted"></i>
</div>
</div>
<div class="form-group">
<button type="button" data-plugin="submit" data-target="#loginForm" class="btn bg-pink-400 btn-block">Sign in</button>
</div>
</div>
</form>
<!-- /simple login form -->
<!-- Footer -->
<div class="footer text-muted text-center">
© <?= date("Y") ?>. TravellerSumut . All right reserved
</div>
<!-- /footer -->
</div>
<!-- /content area -->
</div>
<!-- /main content -->
</div>
<!-- /page content -->
</div>
<!-- /page container -->
<script type="text/javascript" src="<?= $assets->getJQueryForm() ?>"></script>
<script type="text/javascript" src="<?= $assets->getSweetAlert() ?>sweetalert.min.js"></script>
<script type="text/javascript" src="../../cdn/js/_default.js"></script>
<script type="text/javascript" src="../../cdn/js/_action.js"></script>
</body>
</html>