-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
65 lines (56 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="build/images/logo.png">
<title>SIPPEKA | Login</title>
<!-- Bootstrap -->
<link href="vendors/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link href="vendors/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!-- NProgress -->
<link href="vendors/nprogress/nprogress.css" rel="stylesheet">
<!-- Animate.css -->
<link href="vendors/animate.css/animate.min.css" rel="stylesheet">
<!-- Custom Theme Style -->
<link href="build/css/custom.min.css" rel="stylesheet">
</head>
<body class="login">
<div>
<a class="hiddenanchor" id="signup"></a>
<a class="hiddenanchor" id="signin"></a>
<div class="login_wrapper">
<div class="animate form login_form">
<section class="login_content">
<form action="check_login.php" method="POST">
<h1>Selamat Datang</h1>
<div>
<input type="text" class="form-control" placeholder="NIP" required="" name="nip" />
</div>
<div>
<input type="password" class="form-control" placeholder="Password" required="" name="password" />
</div>
<div>
<button type="submit" name="login" class="btn btn-default submit">Masuk</button>
</div>
<div class="clearfix"></div>
<div class="separator">
<div class="clearfix"></div>
<br />
<div>
<h1><i class="fa fa-university"></i> SIPPEKA</h1>
<p>Sistem Informasi Pegawai Pengadilan Agama Karawang</p>
<p>©2020 Pengadilan Agama Karawang, All Rights Reserved.</p>
</div>
</div>
</form>
</section>
</div>
</div>
</div>
</body>
</html>