blob: a06c30413aed77f52e88a086b0d2b0415c7af016 (
plain)
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
|
<div id="topbar">
<span id="user">
<?php if($user->isvisitor()) { ?>
<form action="<?= $this->url('log') ?>" method="post" id="connect">
<input type="password" name="pass" id="loginpass" placeholder="password">
<input type="submit" name="log" value="login">
</form>
<?php } else { ?>
<span>
User level : <?= $user->level() ?>
</span>
<form action="<?= $this->url('log') ?>" method="post" id="connect">
<input type="submit" name="log" value="logout">
</form>
</span>
<?php } ?>
<?php if($user->iseditor()) { ?>
<span>
<a href="<?= $this->url('home') ?>">home</a>
<?php
if($user->isadmin()) {
?>
<a href="<?= $this->url('font') ?>">font</a>
<a href="<?= $this->url('admin') ?>">admin</a>
<?php
}
?>
| <i><a href="https://github.com/vincent-peugnet/wcms" target="_blank">github↝</a></i>
</span>
<?php } ?>
</div>
|