-
Notifications
You must be signed in to change notification settings - Fork 0
/
form-login.php
134 lines (80 loc) · 3.37 KB
/
form-login.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
session_start();
if(isset($_SESSION["login"])){
header("Location: /views/dashboard.php");
exit;
}
require 'services/functions.php';
if(isset($_POST['login'])){
login();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/bootstrap-5.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/bootstrap-icons-1.3.0/bootstrap-icons.css">
<link rel="stylesheet" href="assets/dashboard/admin.css">
<link rel="stylesheet" href="assets/data-table/datatables.min.css">
<title>Menu Login</title>
</head>
<body>
<div class="container">
<div class="position-absolute top-50 start-50 translate-middle">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="card">
<div class="card-header">
<h3 class="fw-bold text-center">FORM LOGIN</h3>
<?php if(isset($_POST["error"])):?>
<p class="text-danger fst-italic text-center">Username / Password salah</p>
<?php endif;?>
</div>
<div class="card-body">
<form action="" method="post">
<div class="row mb-2">
<div class="col-md-12 col-sm-12">
<div class="form-group">
<label for="username">Username</label>
<input type="text" class="form-control" id="username" name="username" autocomplete="off">
</div>
</div>
</div>
<div class="row mb-2">
<div class="col-md-12 col-sm-12">
<div class="form-group">
<label for="pwd">Password</label>
<input type="password" class="form-control" id="pwd" name="password">
</div>
</div>
</div>
<div class="row mb-2">
<div class="col-md-12 col-sm-12">
<div class="form-group">
<a style="text-decoration: none;" href="form-registrasi.php">Belum punya akun ? Registrasi dulu</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="form-group">
<button type="submit" class="btn btn-primary" name="login">Login</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="assets/data-table/jQuery-3.3.1/jquery-3.3.1.js"></script>
<script src="assets/data-table/datatables.min.js"></script>
<script src="assets/bootstrap-5.0.0/js/bootstrap.bundle.min.js"></script>
<script src="assets/dashboard/admin.js"></script>
</body>
</html>