-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.php
39 lines (37 loc) · 1.15 KB
/
profile.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
<?php
include './functions/common_files.php';
session_start();
if(!isset($_SESSION['user_id'])){
get_cart_details();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php get_current_url(); ?></title>
<link rel="icon" type="image/png" href="./all_images/logo.png" />
<link rel="stylesheet" href="./css/header.css"/>
<link rel="stylesheet" href="./css/profile.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"/>
</head>
<body>
<?php get_header(); ?>
<div class="container">
<?php get_user_profile(); ?>
<div class="main-content">
<?php
get_order_pending_details();
get_payment_details();
get_user_order_details();
get_confirm_payment();
get_edit_account();
get_delete_account();
?>
</div>
</div>
<script src="./js/sidebar.js"></script>
<script src="./js/user-sidebar.js"></script>
</body>
</html>