-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
executable file
·43 lines (35 loc) · 1.19 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
<?php
include('login.php');
if(isset($_SESSION['login_user'])){
header("location: user/index.php");
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Login Form</title>
<!--CSS-->
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<img src="assets/img/back2.JPG" width="1366px" height="655px" />
<div id="wrapper">
<form action="" method="post" name="login-form" class="login-form">
<div class="header">
<h1>Silahkan Login</h1>
</div>
<div class="content">
<input name="nip" id="nip" type="text" class="input nip" placeholder="NIP" onfocus="this.value=''" />
<input name="password" id="password" type="password" class="input password" placeholder="Password" onfocus="this.value=''" />
</div>
<div class="footer">
<input type="submit" name="submit" value="Login" class="button" />
</div>
</form>
</div>
<!--GRADIENT
<div class="gradient"></div>
END GRADIENT-->
</body>
</html>