-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathuser.php
78 lines (64 loc) · 2.32 KB
/
user.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<!-- Title and other stuffs -->
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Stylesheets -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link href="css/style.css" rel="stylesheet">
<script src="js/respond.min.js"></script>
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon/favicon.png">
</head>
<body>
<!-- Form area -->
<div class="admin-form">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Widget starts -->
<div class="widget worange">
<!-- Widget head -->
<div class="widget-content">
<div class="padd">
<!-- Login form -->
<form class="form-horizontal" action="config/cek_login.php" method="post">
<!-- Email -->
<div class="form-group">
<label class="control-label col-lg-3">Username</label>
<div class="col-lg-9">
<input type="text" class="form-control" name="username" placeholder="Username Anda">
</div>
</div>
<!-- Password -->
<div class="form-group">
<label class="control-label col-lg-3">Password</label>
<div class="col-lg-9">
<input type="password" class="form-control" name="password" placeholder="Password">
</div>
</div>
<div class="col-lg-9 col-lg-offset-3">
<button type="submit" class="btn btn-info btn-sm">Masuk Sistem</button>
<button type="reset" class="btn btn-default btn-sm">Reset</button>
</div>
<br />
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- JS -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>