Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TMP-2023-24-048
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Maneesha Fernando
TMP-2023-24-048
Commits
4181e8b4
Commit
4181e8b4
authored
Oct 31, 2023
by
Maneesha Fernando
Committed by
GitHub
Oct 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete account.php
parent
963b475a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
208 deletions
+0
-208
account.php
account.php
+0
-208
No files found.
account.php
deleted
100644 → 0
View file @
963b475a
<?php
//if (session_status() !== PHP_SESSION_ACTIVE) {session_start();} for php 5.4 and above
if
(
session_id
()
==
''
||
!
isset
(
$_SESSION
)){
session_start
();}
if
(
!
isset
(
$_SESSION
[
"username"
]))
{
echo
'<h1>Invalid Login! Redirecting...</h1>'
;
header
(
"Refresh: 3; url=index.php"
);
}
if
(
$_SESSION
[
"type"
]
===
"admin"
)
{
header
(
"location:admin.php"
);
}
include
'config.php'
;
?>
<!doctype html>
<html
class=
"no-js"
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
/>
<title>
My Account || BOLT Sports Shop
</title>
<link
rel=
"stylesheet"
href=
"css/foundation.css"
/>
<script
src=
"js/vendor/modernizr.js"
></script>
</head>
<body>
<nav
class=
"top-bar"
data-topbar
role=
"navigation"
>
<ul
class=
"title-area"
>
<li
class=
"name"
>
<h1><a
href=
"index.php"
>
BOLT Sports Shop
</a></h1>
</li>
<li
class=
"toggle-topbar menu-icon"
><a
href=
"#"
><span></span></a></li>
</ul>
<section
class=
"top-bar-section"
>
<!-- Right Nav Section -->
<ul
class=
"right"
>
<li><a
href=
"about.php"
>
About
</a></li>
<li><a
href=
"products.php"
>
Products
</a></li>
<li><a
href=
"cart.php"
>
View Cart
</a></li>
<li><a
href=
"orders.php"
>
My Orders
</a></li>
<li><a
href=
"contact.php"
>
Contact
</a></li>
<?php
if
(
isset
(
$_SESSION
[
'username'
])){
echo
'<li class="active"><a href="account.php">My Account</a></li>'
;
echo
'<li><a href="logout.php">Log Out</a></li>'
;
}
else
{
echo
'<li><a href="login.php">Log In</a></li>'
;
echo
'<li><a href="register.php">Register</a></li>'
;
}
?>
</ul>
</section>
</nav>
<div
class=
"row"
style=
"margin-top:30px;"
>
<div
class=
"small-12"
>
<p>
<?php
echo
'<h3>Hi '
.
$_SESSION
[
'fname'
]
.
'</h3>'
;
?>
</p>
<p><h4>
Account Details
</h4></p>
<p>
Below are your details in the database. If you wish to change anything, then just enter new data in text box and click on update.
</p>
</div>
</div>
<form
method=
"POST"
action=
"update.php"
style=
"margin-top:30px;"
>
<div
class=
"row"
>
<div
class=
"small-12"
>
<div
class=
"row"
>
<div
class=
"small-3 columns"
>
<label
for=
"right-label"
class=
"right inline"
>
First Name
</label>
</div>
<div
class=
"small-8 columns end"
>
<?php
$result
=
$mysqli
->
query
(
'SELECT * FROM users WHERE id='
.
$_SESSION
[
'id'
]);
if
(
$result
===
FALSE
){
die
(
mysql_error
());
}
if
(
$result
)
{
$obj
=
$result
->
fetch_object
();
echo
'<input type="text" id="right-label" placeholder="'
.
$obj
->
fname
.
'" name="fname">'
;
echo
'</div>'
;
echo
'</div>'
;
echo
'<div class="row">'
;
echo
'<div class="small-3 columns">'
;
echo
'<label for="right-label" class="right inline">Last Name</label>'
;
echo
'</div>'
;
echo
'<div class="small-8 columns end">'
;
echo
'<input type="text" id="right-label" placeholder="'
.
$obj
->
lname
.
'" name="lname">'
;
echo
'</div>'
;
echo
'</div>'
;
echo
'<div class="row">'
;
echo
'<div class="small-3 columns">'
;
echo
'<label for="right-label" class="right inline">Address</label>'
;
echo
'</div>'
;
echo
'<div class="small-8 columns end">'
;
echo
'<input type="text" id="right-label" placeholder="'
.
$obj
->
address
.
'" name="address">'
;
echo
'</div>'
;
echo
'</div>'
;
echo
'<div class="row">'
;
echo
'<div class="small-3 columns">'
;
echo
'<label for="right-label" class="right inline">City</label>'
;
echo
'</div>'
;
echo
'<div class="small-8 columns end">'
;
echo
'<input type="text" id="right-label" placeholder="'
.
$obj
->
city
.
'" name="city">'
;
echo
'</div>'
;
echo
'</div>'
;
echo
'<div class="row">'
;
echo
'<div class="small-3 columns">'
;
echo
'<label for="right-label" class="right inline">Pin Code</label>'
;
echo
'</div>'
;
echo
'<div class="small-8 columns end">'
;
echo
'<input type="text" id="right-label" placeholder="'
.
$obj
->
pin
.
'" name="pin">'
;
echo
'</div>'
;
echo
'</div>'
;
echo
'<div class="row">'
;
echo
'<div class="small-3 columns">'
;
echo
'<label for="right-label" class="right inline">Email</label>'
;
echo
'</div>'
;
echo
'<div class="small-8 columns end">'
;
echo
'<input type="email" id="right-label" placeholder="'
.
$obj
->
email
.
'" name="email">'
;
echo
'</div>'
;
echo
'</div>'
;
}
echo
'<div class="row">'
;
echo
'<div class="small-3 columns">'
;
echo
'<label for="right-label" class="right inline">Password</label>'
;
echo
'</div>'
;
echo
'<div class="small-8 columns end">'
;
echo
'<input type="password" id="right-label" name="pwd">'
;
echo
'</div>'
;
echo
'</div>'
;
?>
<div
class=
"row"
>
<div
class=
"small-4 columns"
>
</div>
<div
class=
"small-8 columns"
>
<input
type=
"submit"
id=
"right-label"
value=
"Update"
style=
"background: #0078A0; border: none; color: #fff; font-family: 'Helvetica Neue', sans-serif; font-size: 1em; padding: 10px;"
>
<input
type=
"reset"
id=
"right-label"
value=
"Reset"
style=
"background: #0078A0; border: none; color: #fff; font-family: 'Helvetica Neue', sans-serif; font-size: 1em; padding: 10px;"
>
</div>
</div>
</div>
</div>
</form>
<div
class=
"row"
style=
"margin-top:30px;"
>
<div
class=
"small-12"
>
<footer>
<p
style=
"text-align:center; font-size:0.8em;"
>
©
BOLT Sports Shop. All Rights Reserved.
</p>
</footer>
</div>
</div>
<script
src=
"js/vendor/jquery.js"
></script>
<script
src=
"js/foundation.min.js"
></script>
<script>
$
(
document
).
foundation
();
</script>
</body>
</html>
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