Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PondokEdo
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Roy Junedi Simamora
PondokEdo
Commits
aef5c9a6
Commit
aef5c9a6
authored
May 12, 2017
by
Mei Romauli Sagala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
membuat form login
parent
772c694a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
+62
-0
form_login.php
form_login.php
+62
-0
No files found.
form_login.php
0 → 100644
View file @
aef5c9a6
<?php
require_once
(
dirname
(
__FILE__
)
.
'/common/header.php'
);
require_once
(
dirname
(
__FILE__
)
.
'/cek_login.php'
);
if
(
isset
(
$_GET
[
'do_login'
])){
$login
=
getUser
(
$_POST
[
'username'
],
$_POST
[
'password'
]);
if
(
$login
==
false
){
$_SESSION
[
'login_error'
]
=
TRUE
;
}
else
{
$_SESSION
[
'is_logged_in'
]
=
TRUE
;
header
(
"location:index.php"
);
}
$log
=
getAdmin
(
$_POST
[
'username'
],
$_POST
[
'password'
]);
if
(
$log
==
false
){
$_SESSION
[
'login_error'
]
=
TRUE
;
}
else
{
$_SESSION
[
'is_logged_in'
]
=
TRUE
;
header
(
"location:list_menu.php"
);
}
if
(
isset
(
$_SESSION
[
"login_error"
])){
echo
"<div style='margin-bottom:-55px' class='alert alert-danger' role='alert'><span class='glyphicon glyphicon-warning-sign'></span> Login Gagal !! Username dan Password Salah !!</div>"
;
}
}
?>
<form
class=
'well form-horizontal'
action=
'form_login.php?do_login=1'
method=
'post'
id=
'contact_form'
>
<fieldset>
<legend><span
class=
'glyphicon glyphicon-log-in'
></span>
Login
</legend>
<div
class=
'form-group'
>
<label
class=
'col-md-4 control-label'
>
Username
</label>
<div
class=
'col-md-4 inputGroupContainer'
>
<div
class=
'input-group'
>
<span
class=
'input-group-addon'
><i
class=
'glyphicon glyphicon-user'
></i></span>
<input
type=
'text'
name=
'username'
required
placeholder=
'Username'
class=
'form-control'
type=
'text'
>
</div>
</div>
</div>
<div
class=
'form-group'
>
<label
class=
'col-md-4 control-label'
>
Password
</label>
<div
class=
'col-md-4 inputGroupContainer'
>
<div
class=
'input-group'
>
<span
class=
'input-group-addon'
><i
class=
'glyphicon glyphicon-lock'
></i></span>
<input
name=
'password'
required
placeholder=
'Password'
class=
'form-control'
type=
'password'
>
</div>
</div>
</div>
<div
class=
'form-group'
>
<label
class=
'col-md-4 control-label'
></label>
<div
class=
'col-md-4'
>
<input
type=
'submit'
value=
'login'
class=
'btn btn-default'
>
</div>
</div>
<center>
Belum punya akun?
<a
href=
'form_daftar.php'
>
silahkan daftar disini
</center>
</fieldset>
</form>
<?php
require_once
(
dirname
(
__FILE__
)
.
'/common/footer.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