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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
/**
* @var Laminas\View\Renderer\PhpRenderer $this
*/
?>
<?= $this->doctype() ?>
<?php
// $csrf = '';
// if (!empty($_SESSION['__KHANSIA'])) {
// $csrf = $_SESSION['__KHANSIA']['csrf_token'];
// }
?>
<!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">
<!-- <meta name="csrf-token" content="<?= $csrf ?>"> -->
<?= $this->headTitle('Sistem Penilaian Kerja Praktik')->setSeparator(' - ')->setAutoEscape(false) ?>
<?= $this->headMeta()
->appendName('viewport', 'width=device-width, initial-scale=1.0')
->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
?>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,300,100,500,700,900" rel="stylesheet" type="text/css">
<?= $this->headLink(['rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/img/logo_itb_128.ico'])
?>
<!-- Global stylesheets -->
<link href="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/assets/css/icons/icomoon/styles.css" rel="stylesheet" type="text/css">
<link href="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/assets/css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/assets/css/core.css" rel="stylesheet" type="text/css">
<link href="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/assets/css/components.css" rel="stylesheet" type="text/css">
<link href="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/assets/css/colors.css" rel="stylesheet" type="text/css">
<!-- /global stylesheets -->
<script type="text/javascript" src="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/action-js/global-js/crypto.js"></script>
<link rel="stylesheet" href="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/colorpick/jquery.minicolors.css">
<style>
.logoitb{
width: 80px;
height: 80px;
}
.login-container{
background: #33aae1;
}
.btn-primary{
background-color: #09c;
border-color: #09c;
}
</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 ">
<form method="post" id="login" action="<?php echo $this->basePath()?>/user/authenticate">
<div class="panel panel-body login-form">
<div class="text-center">
<div><img class="logoitb" src="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/img/itb_login.png" alt=""></div>
<h5 class="content-group">Login ke SIPENKP <small class="display-block"></small></h5>
</div>
<div class="form-group has-feedback has-feedback-left">
<input type="text" class="form-control" placeholder="Username" name="username" required>
<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" class="form-control" placeholder="Password" name="passwd" required>
<div class="form-control-feedback">
<i class="icon-lock2 text-muted"></i>
</div>
</div>
<input type="text" name="token_keamanan" value="<?php if(isset($this->token_keamanan)) { echo $this->token_keamanan; }?>" hidden>
<input type="text" id="key" name="key" value="0" hidden>
<div class="" style="text-align:center; color:red; margin-bottom: 10px"><?php if(isset($this->message)) { echo $this->message; }?></div>
<div class="form-group">
<button type="submit" class="btn btn-primary btn-block">Sign in <i class="icon-circle-right2 position-right"></i></button>
</div>
<div class="text-center">
<a href="login_password_recover.html">Forgot password?</a>
</div>
</div>
</form>
<!-- /simple login form -->
</div>
<!-- /content area -->
</div>
<!-- /main content -->
</div>
<!-- /page content -->
</div>
<!-- /page container -->
<!-- Core JS files -->
<script type="text/javascript" src="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/assets/js/plugins/loaders/pace.min.js"></script>
<script type="text/javascript" src="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/assets/js/core/libraries/jquery.min.js"></script>
<script type="text/javascript" src="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/assets/js/core/libraries/bootstrap.min.js"></script>
<script type="text/javascript" src="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/assets/js/plugins/loaders/blockui.min.js"></script>
<!-- /core JS files -->
<!-- Theme JS files -->
<script type="text/javascript" src="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/assets/js/plugins/forms/styling/uniform.min.js"></script>
<script type="text/javascript" src="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/assets/js/core/app.js"></script>
<script type="text/javascript" src="<?php echo '//'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$this->basePath();?>/distro/assets/js/pages/login.js"></script>
<!-- /theme JS files -->
</body>
</html>