-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
38 lines (33 loc) · 840 Bytes
/
header.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
<nav class="navbar">
<div class="nav justify-contend-start">
<a href="index.php" class="align-middle">
<h1> Abalone </h1>
</a>
</div>
<div class="nav justify-contend-start">
<?php
if($ctrl->user != null){
?>
<p><?php echo $ctrl->user->name."#".$ctrl->user->id ?></p>
<?php
}else{
?>
<p><?php echo _("No user connected") ?></p>
<?php
}
?>
</div>
<div class="nav justify-contend-end">
<?php
if($ctrl->user != null){
?>
<a class="btn" href="index.php?a=logoff">Exit</a>
<?php
}else{
?>
<a class="btn" href="index.php?p=login">Log In</a>
<?php
}
?>
</div>
</nav>