Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
ruzalo
/
airline-booking
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
90408065
authored
4 years ago
by
Ryo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated four files
parent
1204a396
master
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
332 deletions
loginform2.php
loginform_for_admin_2.php
loginform_user_2.php
loginform2.php
View file @
90408065
...
@@ -12,112 +12,8 @@ if(isset($_SESSION['login_user'])){
...
@@ -12,112 +12,8 @@ if(isset($_SESSION['login_user'])){
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<title>
Payment
</title>
<title>
Payment
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css2.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css2.css"
>
<
style
>
<
link
rel=
"stylesheet"
type=
"text/css"
href=
"css/loginform2_style.css"
>
#login
input
[
type
=
"username"
],
#login
input
[
type
=
"password"
],
#login
button
[
type
=
"submit"
]
{
font
:
400
12px
/
16px
"Roboto"
,
Helvetica
,
Arial
,
sans-serif
;
}
#login
{
background
:
#F9F9F9
;
padding
:
25px
;
margin
:
15px
0
;
box-shadow
:
0
0
20px
0
rgba
(
0
,
0
,
0
,
0.2
),
0
5px
5px
0
rgba
(
0
,
0
,
0
,
0.24
);
}
#login
h3
{
display
:
block
;
font-size
:
30px
;
font-weight
:
300
;
margin-bottom
:
10px
;
}
#login
h4
{
margin
:
5px
0
15px
;
display
:
block
;
font-size
:
13px
;
font-weight
:
400
;
}
fieldset
{
border
:
medium
none
!important
;
margin
:
0
0
10px
;
min-width
:
100%
;
padding
:
0
;
width
:
100%
;
}
#login
input
[
type
=
"username"
],
#login
input
[
type
=
"password"
]
{
width
:
100%
;
border
:
1px
solid
#ccc
;
background
:
#FFF
;
margin
:
0
0
5px
;
padding
:
10px
;
}
#login
input
[
type
=
"username"
]
:hover
,
#login
input
[
type
=
"password"
]
:hover
{
-webkit-transition
:
border-color
0.3s
ease-in-out
;
-moz-transition
:
border-color
0.3s
ease-in-out
;
transition
:
border-color
0.3s
ease-in-out
;
border
:
1px
solid
#aaa
;
}
#login
textarea
{
height
:
100px
;
max-width
:
100%
;
resize
:
none
;
}
#login
button
[
type
=
"submit"
]
{
cursor
:
pointer
;
width
:
100%
;
border
:
none
;
background
:
#4CAF50
;
color
:
#FFF
;
margin
:
0
0
5px
;
padding
:
10px
;
font-size
:
20px
;
}
#login
button
[
type
=
"submit"
]
:hover
{
background
:
#43A047
;
-webkit-transition
:
background
0.3s
ease-in-out
;
-moz-transition
:
background
0.3s
ease-in-out
;
transition
:
background-color
0.3s
ease-in-out
;
}
#login
button
[
type
=
"submit"
]
:active
{
box-shadow
:
inset
0
1px
3px
rgba
(
0
,
0
,
0
,
0.5
);
}
#login
input
:focus
,
#login
textarea
:focus
{
outline
:
0
;
border
:
1px
solid
#aaa
;
}
::-webkit-input-placeholder
{
color
:
#888
;
}
:-moz-placeholder
{
color
:
#888
;
}
::-moz-placeholder
{
color
:
#888
;
}
:-ms-input-placeholder
{
color
:
#888
;
}
</style>
</head>
</head>
<body>
<body>
...
@@ -143,54 +39,7 @@ if(isset($_SESSION['login_user'])){
...
@@ -143,54 +39,7 @@ if(isset($_SESSION['login_user'])){
<input
name=
"submit"
type=
"submit"
class=
"button7"
value=
"Login"
>
<input
name=
"submit"
type=
"submit"
class=
"button7"
value=
"Login"
>
<span>
<?php
echo
$error
;
?>
</span>
<span>
<?php
echo
$error
;
?>
</span>
</form>
</form>
<?php
// $con = mysqli_connect(localhost,root, root, Airline_Booking, 8889);
//
// // Check connection
// if (mysqli_connect_errno()){
// echo "Failed to connect to MySQL: " . mysqli_connect_error();
// }
//
// if ($_SERVER["REQUEST_METHOD"] == "POST") {
// $username = ($_POST["username"]);
// $password = ($_POST["password"]);
// }
//
// $data = mysqli_query($con, "SELECT MemberID FROM User_register WHERE username = '$username' AND password = '$password' ");
// MemberID = $row[0]
// if (isset($_GET['MemberID'])) {
// $MemberID = $_GET['MemberID'];
// echo $MemberID;
// }
// session_start();
// if (isset($_GET['MemberID'])) {
// $MemberID = $_GET['MemberID'];
// $_SESSION['MemberID'] = $MemberID;
// }
session_start
();
if
(
isset
(
$_POST
[
'username'
]))
{
$username_value
=
$_POST
[
'username'
];
$_SESSION
[
'username'
]
=
$username_value
;
}
session_start
();
if
(
isset
(
$_POST
[
'password'
]))
{
$password_value
=
$_POST
[
'password'
];
$_SESSION
[
'password'
]
=
$password_value
;
}
$var_value
=
$_GET
[
'Flight_Id'
];
echo
"Your flight ID is "
.
$var_value
.
"."
;
session_start
();
if
(
isset
(
$_GET
[
'Flight_Id'
]))
{
$Flight_Id
=
$_GET
[
'Flight_Id'
];
$_SESSION
[
'Flight_Id'
]
=
$Flight_Id
;
}
?>
<h3><legend>
Register
</legend></h3>
<h3><legend>
Register
</legend></h3>
<label>
If you do not have username and password, please register by clicking
</label>
<label>
If you do not have username and password, please register by clicking
</label>
...
...
This diff is collapsed.
Click to expand it.
loginform_for_admin_2.php
View file @
90408065
<?php
<?php
include
(
'login_admin.php'
);
// Includes Login Script
include
(
'
php_files/
login_admin.php'
);
// Includes Login Script
if
(
isset
(
$_SESSION
[
'login_user'
])){
if
(
isset
(
$_SESSION
[
'login_user'
])){
header
(
"location: admin_place.php"
);
header
(
"location: admin_place.php"
);
...
@@ -12,95 +12,7 @@ header("location: admin_place.php");
...
@@ -12,95 +12,7 @@ header("location: admin_place.php");
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<title>
Login Admin
</title>
<title>
Login Admin
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css2.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css2.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/loginform_for_admin_2.css"
>
<style>
#login
input
[
type
=
"username"
],
#login
input
[
type
=
"password"
],
#login
button
[
type
=
"submit"
]
{
font
:
400
12px
/
16px
"Roboto"
,
Helvetica
,
Arial
,
sans-serif
;
}
#login
{
background
:
#F9F9F9
;
padding
:
25px
;
margin
:
15px
0
;
box-shadow
:
0
0
20px
0
rgba
(
0
,
0
,
0
,
0.2
),
0
5px
5px
0
rgba
(
0
,
0
,
0
,
0.24
);
}
#login
h3
{
display
:
block
;
font-size
:
30px
;
font-weight
:
300
;
margin-bottom
:
10px
;
}
#login
h4
{
margin
:
5px
0
15px
;
display
:
block
;
font-size
:
13px
;
font-weight
:
400
;
}
fieldset
{
border
:
medium
none
!important
;
margin
:
0
0
10px
;
min-width
:
100%
;
padding
:
0
;
width
:
100%
;
}
#login
input
[
type
=
"username"
],
#login
input
[
type
=
"password"
]
{
width
:
100%
;
border
:
1px
solid
#ccc
;
background
:
#FFF
;
margin
:
0
0
5px
;
padding
:
10px
;
}
#login
input
[
type
=
"username"
]
:hover
,
#login
input
[
type
=
"password"
]
:hover
{
-webkit-transition
:
border-color
0.3s
ease-in-out
;
-moz-transition
:
border-color
0.3s
ease-in-out
;
transition
:
border-color
0.3s
ease-in-out
;
border
:
1px
solid
#aaa
;
}
#login
textarea
{
height
:
100px
;
max-width
:
100%
;
resize
:
none
;
}
#login
button
[
type
=
"submit"
]
{
cursor
:
pointer
;
width
:
100%
;
border
:
none
;
background
:
#4CAF50
;
color
:
#FFF
;
margin
:
0
0
5px
;
padding
:
10px
;
font-size
:
20px
;
}
#login
button
[
type
=
"submit"
]
:hover
{
background
:
#43A047
;
-webkit-transition
:
background
0.3s
ease-in-out
;
-moz-transition
:
background
0.3s
ease-in-out
;
transition
:
background-color
0.3s
ease-in-out
;
}
#login
button
[
type
=
"submit"
]
:active
{
box-shadow
:
inset
0
1px
3px
rgba
(
0
,
0
,
0
,
0.5
);
}
#login
input
:focus
,
#login
textarea
:focus
{
outline
:
0
;
border
:
1px
solid
#aaa
;
}
</style>
</head>
</head>
...
...
This diff is collapsed.
Click to expand it.
loginform_user_2.php
View file @
90408065
<?php
<?php
include
(
'login.php'
);
// Includes Login Script
include
(
'
php_files/
login.php'
);
// Includes Login Script
if
(
isset
(
$_SESSION
[
'login_user'
])){
if
(
isset
(
$_SESSION
[
'login_user'
])){
header
(
"location: payment1.php"
);
header
(
"location: payment1.php"
);
...
@@ -12,94 +12,8 @@ header("location: payment1.php");
...
@@ -12,94 +12,8 @@ header("location: payment1.php");
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<title>
Login
</title>
<title>
Login
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css2.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css2.css"
>
<style>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/loginform_user_2_style.css"
>
#login
input
[
type
=
"username"
],
#login
input
[
type
=
"password"
],
#login
button
[
type
=
"submit"
]
{
font
:
400
12px
/
16px
"Roboto"
,
Helvetica
,
Arial
,
sans-serif
;
}
#login
{
background
:
#F9F9F9
;
padding
:
25px
;
margin
:
15px
0
;
box-shadow
:
0
0
20px
0
rgba
(
0
,
0
,
0
,
0.2
),
0
5px
5px
0
rgba
(
0
,
0
,
0
,
0.24
);
}
#login
h3
{
display
:
block
;
font-size
:
30px
;
font-weight
:
300
;
margin-bottom
:
10px
;
}
#login
h4
{
margin
:
5px
0
15px
;
display
:
block
;
font-size
:
13px
;
font-weight
:
400
;
}
fieldset
{
border
:
medium
none
!important
;
margin
:
0
0
10px
;
min-width
:
100%
;
padding
:
0
;
width
:
100%
;
}
#login
input
[
type
=
"username"
],
#login
input
[
type
=
"password"
]
{
width
:
100%
;
border
:
1px
solid
#ccc
;
background
:
#FFF
;
margin
:
0
0
5px
;
padding
:
10px
;
}
#login
input
[
type
=
"username"
]
:hover
,
#login
input
[
type
=
"password"
]
:hover
{
-webkit-transition
:
border-color
0.3s
ease-in-out
;
-moz-transition
:
border-color
0.3s
ease-in-out
;
transition
:
border-color
0.3s
ease-in-out
;
border
:
1px
solid
#aaa
;
}
#login
textarea
{
height
:
100px
;
max-width
:
100%
;
resize
:
none
;
}
#login
button
[
type
=
"submit"
]
{
cursor
:
pointer
;
width
:
100%
;
border
:
none
;
background
:
#4CAF50
;
color
:
#FFF
;
margin
:
0
0
5px
;
padding
:
10px
;
font-size
:
20px
;
}
#login
button
[
type
=
"submit"
]
:hover
{
background
:
#43A047
;
-webkit-transition
:
background
0.3s
ease-in-out
;
-moz-transition
:
background
0.3s
ease-in-out
;
transition
:
background-color
0.3s
ease-in-out
;
}
#login
button
[
type
=
"submit"
]
:active
{
box-shadow
:
inset
0
1px
3px
rgba
(
0
,
0
,
0
,
0.5
);
}
#login
input
:focus
,
#login
textarea
:focus
{
outline
:
0
;
border
:
1px
solid
#aaa
;
}
</style>
</head>
</head>
...
...
This diff is collapsed.
Click to expand it.
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