-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccount.php
More file actions
26 lines (26 loc) · 719 Bytes
/
Copy pathaccount.php
File metadata and controls
26 lines (26 loc) · 719 Bytes
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
<?php
$page = 'Account';
$lvl = 1;
include 'php/includes/head.php';
include 'php/scripts/update.php';
include 'php/includes/navbar.php';
?>
<!-- body -->
<div class="container">
<div class="row">
<div class="col-12">
<?php include 'php/includes/account_hierachy.php' ?>
</div>
<div class="col my-3">
<div class="row">
<div class="col-3">
<?php include 'php/includes/account_menu.php' ?>
</div>
<div class="col-9">
<?php include 'php/includes/account_info.php' ?>
</div>
</div>
</div>
</div>
</div>
<?php include 'php/includes/foot.php' ?>