-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.php
More file actions
57 lines (49 loc) · 1.73 KB
/
index.php
File metadata and controls
57 lines (49 loc) · 1.73 KB
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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Login</title>
<link rel='stylesheet prefetch' href='http://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900|RobotoDraft:400,100,300,500,700,900'>
<link rel='stylesheet prefetch' href='/admin/font-awesome/css/font-awesome.min.css'>
<link rel="stylesheet" href="css/style.css">
<?php include 'admin/config.php'; ?>
</head>
<body>
<?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>";
}
}
?>
<!-- Form Mixin-->
<!-- Input Mixin-->
<!-- Button Mixin-->
<!-- Pen Title-->
<div class="pen-title">
<h1>Login Page <i class='fa fa-code'></i></h1> by <a href='http://noobsgnu.com'>Kausar</a></span>
</div>
<!-- Form Module-->
<div class="module form-module">
<div class="toggle"><i class="fa fa-times fa-pencil"></i>
<div class="tooltip">Click Me</div>
</div>
<div class="form">
<h2>Login to your account</h2>
<form action="login_act.php" method="post">
<input type="text" class="form-control" placeholder="Username" name="uname">
<input type="password" class="form-control" placeholder="Password" name="pass">
<button>Login</button>
</form>
</div>
<div class="form">
<center> Silahkan Login </center>
</form>
</div>
<div class="cta"><a href="http://facebook.com/router.z">Copyright © kausar 2016</a></div>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='/css/link.css'></script>
<script src="js/index.js"></script>
</body>
</html>