-
Notifications
You must be signed in to change notification settings - Fork 0
/
account.php
46 lines (38 loc) · 1.13 KB
/
account.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
40
41
42
43
44
45
46
<?php include 'core/config.php'; ?>
<!DOCTYPE html>
<html lang="sh">
<?php include 'includes/mapincludes/head2.php' ?>
<body>
<?php include 'includes/header.php' ?>
<!-- Main content -->
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 text-left">
<h1>Nalog,
<?php
echo $user_data->username;
?>
</h1>
<hr>
<p class="lead">
Na ovoj stranici mozete podesiti licne informacije i pregledati podatke vezane za vase posede
</p>
<div class="tab-panels">
<ul class="nav nav-tabs">
<li rel="panel1" class="active"><a href="#">Nalog</a></li>
<li rel="panel2"><a href="#">Statistika</a></li>
</ul>
<br>
<?php
include 'includes/accform.php';
include 'includes/mapincludes/accmap.php';
?>
</div>
</div>
</div>
</div>
<!-- Main content -->
<?php include 'includes/footer.php' ?>
<?php include 'includes/mapincludes/scripts.php' ?>
</body>
</html>