-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
104 lines (54 loc) · 2.16 KB
/
index.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php include 'includes/head.php';
if(!empty($_GET['lang'])){
$_SESSION['lang'] = $_GET['lang'];
}else{
$_SESSION['lang'] = 'en';
}
include 'language/'.$_SESSION['lang'].'.php';
?>
<!-- <input type="text" id="thecurloginsession" value="<?php echo $_SESSION['client']?>"> -->
<div class="sticky mainTopBar">
<nav class="top-bar mainTopBar" data-topbar role="navigation" data-options="sticky_on: large">
<section class="top-bar-section">
<!-- Right Nav Section -->
<ul class="right">
<li class="has-dropdown">
<a href="#"><i class="far fa-building"></i> Client </a>
<ul class="dropdown">
<?php
$getClients = mysqli_query($con,"SELECT * FROM client");
while($cl = mysqli_fetch_array($getClients)){
echo '<li class="curClients" id="'.$cl['client_id'].'"><a href="#">'.$cl['client_name'].'</a></li>';
}
?>
<li class="text-center"><a href="#" id="addnewclient"><i class="fas fa-plus-circle"></i></a></li>
</ul>
</li>
<li class="has-dropdown">
<a href="#"><i class="fas fa-language fa-2x"></i></a>
<ul class="dropdown">
<li><a href="http://theoht.com/proman/status/?lang=en">EN</a></li>
<li class=""><a href="http://theoht.com/proman/status/?lang=sp">SP</a></li>
</ul>
</li>
</ul>
</section>
</nav>
</div>
<br />
<div class="large-2 columns" style="padding:0px;" id="controllerOneBox">
<!-- below the event adder is loaded on document ready -->
<div class="large-12 columns" id="controllerOne">
</div>
<!-- BUTTON is loaded seperately for styling purposes. -->
<div class="large-12 columns" id="controllerOne_buton">
</div>
</div>
<div class="large-10 columns">
<div id="ProjectViewer">
</div>
<hr />
<div id="ClientViewer">
</div>
</div>
<?php include 'includes/footer.php';?>