-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
191 lines (168 loc) · 7.03 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<?php
session_start();
if (isset($_SESSION['admin']) OR !empty($_SESSION['user'])) {
if (isset($_SESSION['admin'])) {
echo "<script>window.location='admin/';</script>";
} elseif (isset($_SESSION['user'])) {
echo "<script>window.location='user/';</script>";
} else {
echo "SESSION ERROR";
}
} else {
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<title>Sign In | WEB ATRIBUT FOSTI 2020</title>
<!-- Favicon-->
<link rel="icon" href="assets/favicon.png" type="image/x-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">
<link href="assets/iconfont/material-icons.css" rel="stylesheet" type="text/css">
<!-- Bootstrap Core Css -->
<link href="assets/plugins/bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Waves Effect Css -->
<link href="assets/plugins/node-waves/waves.css" rel="stylesheet" />
<!-- Animation Css -->
<link href="assets/plugins/animate-css/animate.css" rel="stylesheet" />
<!-- Custom Css -->
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/themes/all-themes.css" rel="stylesheet" />
<!-- CSS manual -->
<link href="style.css" rel="stylesheet">
<!-- CSS sweetalert -->
<link rel='stylesheet' href='assets/plugins/sweetalert2/sweetalert2.min.css'>
</head>
<body class="login-page">
<menu>
<ul>
<li><a href="http://fosti.ums.ac.id" title="Homepage" ><i class="material-icons" style="font-size: 15px;">home</i> Beranda</a></li>
<li><a title="Blog Fosti" href="http://fosti.ums.ac.id/blog">Blog</a></li>
<li><a title="Event Fosti" href="https://event.fostiums.org/">Event</a></li>
<li><a title="Source Code" href="https://github.com/fosti">Source Code</a></li>
</ul>
</menu>
<div class="login-box">
<div class="logo">
<a title="Homepage" href="http://fosti.ums.ac.id/"><b>F<b style="color:red;">OS</b>TI 2020</b></a>
<small>WEB ATRIBUT FOSTI</small>
</div>
<div style="border-radius: 15px 15px 0 0 !important; }" class="card">
<div class="body">
<form id="sign_in" action="cek_login" method="POST">
<div class="msg">Silahkan login untuk melanjutkan</div>
<div class="input-group">
<span class="input-group-addon">
<i class="material-icons">person</i>
</span>
<div class="form-line">
<input type="text" class="form-control" name="username" placeholder="Username" required autofocus>
</div>
</div>
<div class="input-group">
<span class="input-group-addon">
<i class="material-icons">lock</i>
</span>
<div class="form-line">
<input type="password" class="form-control" id="password" name="password" placeholder="Password" required>
</div>
</div>
<div class="row">
<div class="col-xs-8 p-t-5">
<input type="checkbox" name="rememberme" id="rememberme" class="filled-in chk-col-green">
<label id="showhide" for="rememberme">Show Password</label>
</div>
<div class="col-xs-4">
<input style="margin: 0;" type="submit" class="tombol" value="LOGIN">
</div>
</div>
</form>
</div>
</div>
</div>
<footer><p>Copyright © 2020 | <a href="https://fosti.ums.ac.id/" title="Homepage">FOSTI UMS </a> | All Rights Reserved.</p></footer>
<!-- Show Password -->
<script>
(function() {
var showHide = function( element, field ) {
this.element = element;
this.field = field;
this.toggle();
};
showHide.prototype = {
toggle: function() {
var self = this;
self.element.addEventListener( "change", function() {
if(self.element.checked) {self.field.setAttribute( "type", "text" );}
else {self.field.setAttribute( "type", "password" );}
}, false);
}
};
document.addEventListener( "DOMContentLoaded", function() {
var checkbox = document.querySelector( "#rememberme" ),
password = document.querySelector( "#password" ),
form = document.querySelector( "#sign_in" );
var toggler = new showHide( checkbox, password );
});
})();
</script>
<!-- Jquery Core Js -->
<script src="assets/plugins/jquery/jquery.min.js"></script>
<!-- Bootstrap Core Js -->
<script src="assets/plugins/bootstrap/js/bootstrap.js"></script>
<!-- Waves Effect Plugin Js -->
<script src="assets/plugins/node-waves/waves.js"></script>
<!-- Validation Plugin Js -->
<script src="assets/plugins/jquery-validation/jquery.validate.js"></script>
<!-- Custom Js -->
<script src="assets/js/admin.js"></script>
<script src="assets/js/pages/examples/sign-in.js"></script>
<!-- Sweetalert Js -->
<script src="assets/plugins/sweetalert2//sweetalert2.all.min.js"></script>
<?php
if(isset($_GET['pesan'])){
if($_GET['pesan']=="gagal"){
echo "<script type='text/javascript'>
swal({
title: 'Username atau Password Salah!',
type: 'error',
confirmButtonText: 'OK',
confirmButtonColor: '#4caf50',
reverseButtons: true,
focusConfirm: true,
});
</script>";
}
else if($_GET['pesan']=="dilarang"){
echo "<script type='text/javascript'>
swal({
title: 'Anda Tidak Diizinkan Mengakses Halaman Tersebut!',
type: 'error',
confirmButtonText: 'OK',
confirmButtonColor: '#4caf50',
reverseButtons: true,
focusConfirm: true,
});
</script>";
}
else if($_GET['pesan']=="blacklist"){
echo "<script type='text/javascript'>
swal({
title: 'Anda Masuk Buronan Interpol!',
type: 'error',
confirmButtonText: 'OK',
confirmButtonColor: '#4caf50',
reverseButtons: true,
focusConfirm: true,
});
</script>";
}
}
?>
</body>
</html>
<?php
}
?>