Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PA-1_Kelompok09-2019
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Lucy Patrecia Butar-Butar
PA-1_Kelompok09-2019
Commits
529265db
Commit
529265db
authored
Jun 09, 2020
by
Lucy Patrecia Butar-Butar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
da7862fb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
114 additions
and
0 deletions
+114
-0
login.php
login.php
+114
-0
No files found.
login.php
0 → 100644
View file @
529265db
<?php
error_reporting
(
E_ALL
^
(
E_NOTICE
|
E_WARNING
));
?>
<?php
ob_start
();
session_start
();
$koneksi
=
new
mysqli
(
"localhost"
,
"root"
,
""
,
"klubkaryailmiah"
);
if
(
$_SESSION
[
'Admin'
]
||
$_SESSION
[
'Mahasiswa'
])
{
header
(
"location:index.php"
);
}
else
{
?>
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"ie=edge"
>
<title>
Login
</title>
<!-- Font Icon -->
<link
rel=
"stylesheet"
href=
"assets2/fonts/material-icon/css/material-design-iconic-font.min.css"
>
<!-- Main css -->
<link
rel=
"stylesheet"
href=
"assets2/css/style.css"
>
</head>
<body>
<div
class=
"main"
>
<!-- Sing in Form -->
<section
class=
"sign-in"
>
<div
class=
"container"
>
<div
class=
"signin-content"
>
<div
class=
"signin-image"
>
<figure><img
src=
"assets2/images/signin-image.jpg"
alt=
"sing up image"
></figure>
<a
href=
"registrasi.php"
class=
"signup-image-link"
>
Belum Menjadi Anggota ?
<br>
Silahkan Registrasi
</a>
<br>
<br>
<a
href=
"pengunjung.php"
class=
"signup-image-link"
>
Hanya berkunjung ?
</a>
</div>
<!-- <div class="signin-image">
<figure><img src="assets2/images/signin-image.jpg" alt="sing up image"></figure>
</div> -->
<div
class=
"signin-form"
>
<h2
class=
"form-title"
>
Login
</h2>
<form
method=
"POST"
class=
"register-form"
id=
"login-form"
>
<div
class=
"form-group"
>
<label
for=
"your_name"
><i
class=
"zmdi zmdi-account material-icons-name"
></i></label>
<input
type=
"text"
name=
"username"
id=
"your_name"
placeholder=
"Masukkan Username Anda"
/>
</div>
<div
class=
"form-group"
>
<label
for=
"your_pass"
><i
class=
"zmdi zmdi-lock"
></i></label>
<input
type=
"password"
name=
"password"
id=
"your_pass"
placeholder=
"Masukkan Password Anda"
/>
</div>
<div
class=
"form-group form-button"
>
<input
type=
"submit"
name=
"login"
id=
"signin"
class=
"form-submit"
value=
"Login"
/>
</div>
</form>
</div>
</div>
</div>
</section>
</div>
<script
src=
"assets2/vendor/jquery/jquery.min.js"
></script>
<script
src=
"assets2/js/main.js"
></script>
</body>
</html>
<?php
if
(
isset
(
$_POST
[
'login'
]))
{
$username
=
$_POST
[
'username'
];
$password
=
$_POST
[
'password'
];
$sql
=
$koneksi
->
query
(
"SELECT * FROM tb_user WHERE username='
$username
' AND password='
$password
'"
);
$data
=
$sql
->
fetch_assoc
();
$ketemu
=
$sql
->
num_rows
;
if
(
$ketemu
>=
1
)
{
session_start
();
if
(
$data
[
'role'
]
==
"Admin"
)
{
$_SESSION
[
'Admin'
]
=
$data
[
'id'
];
header
(
"location:index.php"
);
}
else
if
(
$data
[
'role'
]
==
"Mahasiswa"
)
{
$_SESSION
[
'Mahasiswa'
]
=
$data
[
'id'
];
header
(
"location:index.php"
);
}
}
else
{
?>
<script>
alert
(
"Username / Password Salah, Silahkan Login Kembali !"
);
</script>
<?php
}
}
}
?>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment