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
|
<!-- Home button --> <li class0="dropdown shortcut-menu"> <a href="../" class="dropdown-toggle" title="<?=_lang("Store")?>"> <i class="glyphicon glyphicon-home"></i> </a> </li>
<!-- User Account Menu --> <li class="dropdown user user-menu"> <!-- Menu Toggle Button --> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <!-- The user image in the navbar--> <img src="dist/img/user2-160x160.jpg" class="user-image" alt="User Image"> <!-- hidden-xs hides the username on small devices so only the image appears. --> <span class="hidden-xs"><?=$_SESSION["cmsusername"]?></span> </a> <ul class="dropdown-menu">
<!-- Menu Footer--> <li class="user-footer"> <div class="pull-left"> <a href="user_profile_modifyform.php" class="btn btn-default btn-flat"><?=_lang("Profile")?></a> </div> <div class="pull-right"> <a href="logout.php" class="btn btn-default btn-flat"><?=_lang("Logout")?></a> </div> </li> </ul> </li>
|