source: pro-violet-viettel/sourcecode/application/views/layout/collaborator/header.php

Last change on this file was 883, checked in by namnd, 10 years ago
File size: 3.8 KB
Line 
1<?php
2$collaboratorInfo = $this->session->userdata('collaboratorInfo');
3$fullname = $collaboratorInfo['fullname'];
4?>
5<!DOCTYPE html>
6<html lang="en">
7        <head>
8                <meta charset="utf-8" />
9                <title>SBG|Admin</title>
10
11                <meta name="description" content="overview &amp; stats" />
12                <meta name="viewport" content="width=device-width, initial-scale=1.0" />
13
14                <link href="<?php echo $base_url;?>assets/css/bootstrap.min.css" rel="stylesheet" />
15       
16                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/font-awesome.min.css" />
17
18                <!-- page specific plugin styles -->
19
20                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/jquery-ui-1.10.3.full.min.css" />
21                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/datepicker.css" />
22                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ui.jqgrid.css" />
23               
24                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ace-fonts.css" />
25
26                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ace.min.css" />
27                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ace-rtl.min.css" />
28                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ace-skins.min.css" />
29        <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/custom.css" />
30                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/daterangepicker.css" />
31               
32                <script src="<?php echo $base_url;?>assets/js/ace-extra.min.js"></script>
33               
34                <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
35
36                <!--[if lt IE 9]>
37                <script src="<?php echo $base_url;?>assets/js/html5shiv.js"></script>
38                <script src="<?php echo $base_url;?>assets/js/respond.min.js"></script>
39                <![endif]-->
40                <style>
41                        .icon-refresh-animate {
42                                -animation: spin .7s infinite linear;
43                                -webkit-animation: spin2 .7s infinite linear;
44                        }
45
46                        @-webkit-keyframes spin2 {
47                                from { -webkit-transform: rotate(0deg);}
48                                to { -webkit-transform: rotate(360deg);}
49                        }
50
51                        @keyframes spin {
52                                from { transform: scale(1) rotate(0deg);}
53                                to { transform: scale(1) rotate(360deg);}
54                        }
55                        table a
56                        {
57                                cursor: pointer;
58                                font-size: 13px;
59                                font-weight: normal;
60                        }
61                </style>
62        </head>
63
64        <body>
65                <div class="navbar navbar-default navbar-fixed-top" id="navbar">
66                        <script type="text/javascript">
67                                try{ace.settings.check('navbar' , 'fixed')}catch(e){}
68                        </script>
69
70                        <div class="navbar-container" id="navbar-container">
71                                <div class="navbar-header pull-left">
72                                        <a href="#" class="navbar-brand">
73                                                <img src="<?php echo $base_url;?>assets/img/logo_soanbai_online_white.png" width="350" class="img-responsive">
74                                        </a><!-- /.brand -->
75                                </div><!-- /.navbar-header -->
76
77                                <div class="navbar-header pull-right" role="navigation">
78                                        <ul class="nav ace-nav">
79                                                <li>
80                                                        <a data-toggle="dropdown" href="#" class="dropdown-toggle">
81                                                                <span class="user-info">
82                                                                        <small>Xin chào,</small>
83                                                                        <?php echo $fullname; ?>
84                                                                </span>
85
86                                                                <i class="icon-caret-down"></i>
87                                                        </a>
88
89                                                        <ul class="user-menu pull-right dropdown-menu dropdown-yellow dropdown-caret dropdown-close">
90                                                                <li>
91                                                                        <a href="<?php echo $base_url; ?>cong_tac_vien/thong_tin_ca_nhan">
92                                                                                <i class="icon-user"></i>
93                                                                                ThÃŽng tin cá nhân
94                                                                        </a>
95                                                                </li>
96
97                                                                <li class="divider"></li>
98
99                                                                <li>
100                                                                        <a href="<?php echo $base_url; ?>collaborator/home/logout">
101                                                                                <i class="icon-off"></i>
102                                                                                Thoát
103                                                                        </a>
104                                                                </li>
105                                                        </ul>
106                                                </li>
107                                        </ul><!-- /.ace-nav -->
108                                </div><!-- /.navbar-header -->
109                        </div><!-- /.container -->
110                </div>
111
112                <div class="main-container" id="main-container">
113                        <script type="text/javascript">
114                                try{ace.settings.check('main-container' , 'fixed')}catch(e){}
115                        </script>
Note: See TracBrowser for help on using the repository browser.