-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
67 lines (67 loc) · 2.81 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
<!DOCTYPE html>
<html>
<head>
<title>KIOS SAUDARI WEB</title>
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="assets/js/jquery-ui/jquery-ui.css">
<script type="text/javascript" src="assets/js/jquery.js"></script>
<script type="text/javascript" src="assets/js/bootstap.js"></script>
<script type="text/javascript" src="assets/js/jquery-ui.js"></script>
<?php include 'admin/config.php'; ?>
<style type="text/css">
.kotak{
margin-top: 150px;
}
.kotak .input-group{
margin-bottom: 20px;
}
#footer {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 50px;
overflow: hidden;
}
</style>
</head>
<body>
<div class="container">
<?php
if(isset($_GET['pesan'])){
if($_GET['pesan'] == "gagal"){
echo "<div style='margin-bottom:-55px' class='alert alert-danger' role='alert'><span class='glyphicon glyphicon-warning-sign'></span> Login Gagal !! Username dan Password Salah !!</div>";
}
}
?>
<div class="panel panel-default">
<form action="login_act.php" method="post">
<div class="col-md-4 col-md-offset-4 kotak">
<h3>Halo Admin</h3>
<h2>Silahkan Login</h2>
<div class="input-group">
<span class="input-group-addon"><span class="glyphicon glyphicon-user"></span></span>
<input type="text" class="form-control" placeholder="Username" name="username">
</div>
<div class="input-group">
<span class="input-group-addon"><span class="glyphicon glyphicon-lock"></span></span>
<input type="password" class="form-control" placeholder="Password" name="password">
</div>
<div class="input-group">
<input type="submit" class="btn btn-primary" value="login">
</div>
</div>
</form>
</div>
</div>
<footer id="footer">
<div class="row" align="center">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">GROSIR SAUDARI | Copyright © 2020 | SOLUNA DEVS</div>
</div>
</div>
</div>
</footer>
</body>
</html>