[780] | 1 | <?php $base_url = base_url();?>
|
---|
| 2 | <!DOCTYPE html>
|
---|
| 3 | <html lang="en">
|
---|
| 4 | <head>
|
---|
| 5 | <meta charset="utf-8" />
|
---|
| 6 | <title>SBG Online</title>
|
---|
| 7 |
|
---|
| 8 | <meta name="description" content="overview & stats" />
|
---|
| 9 | <meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
---|
| 10 |
|
---|
| 11 | <link href="<?php echo $base_url;?>assets/css/bootstrap.min.css" rel="stylesheet" />
|
---|
| 12 | <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/font-awesome.min.css" />
|
---|
| 13 | <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/dropzone.css" />
|
---|
| 14 | <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ace-fonts.css" />
|
---|
| 15 |
|
---|
| 16 | <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ace.min.css" />
|
---|
| 17 | <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ace-rtl.min.css" />
|
---|
| 18 | <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ace-skins.min.css" />
|
---|
| 19 | <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/custom.css" />
|
---|
| 20 | <script src="<?php echo $base_url;?>assets/js/ace-extra.min.js"></script>
|
---|
[835] | 21 | <script type="text/javascript">
|
---|
| 22 | var api_url = "<?php echo $this->config->item('api_url'); ?>";
|
---|
| 23 | </script>
|
---|
[780] | 24 | <style type="text/css" media="screen">
|
---|
| 25 | /* .sidebar:before, .sidebar {background-color: transparent;} */
|
---|
| 26 | .icon-refresh-animate {
|
---|
| 27 | -animation: spin .7s infinite linear;
|
---|
| 28 | -webkit-animation: spin2 .7s infinite linear;
|
---|
| 29 | }
|
---|
| 30 |
|
---|
| 31 | @-webkit-keyframes spin2 {
|
---|
| 32 | from { -webkit-transform: rotate(0deg);}
|
---|
| 33 | to { -webkit-transform: rotate(360deg);}
|
---|
| 34 | }
|
---|
| 35 |
|
---|
| 36 | @keyframes spin {
|
---|
| 37 | from { transform: scale(1) rotate(0deg);}
|
---|
| 38 | to { transform: scale(1) rotate(360deg);}
|
---|
| 39 | }
|
---|
| 40 | form a
|
---|
| 41 | {
|
---|
| 42 | cursor: pointer;
|
---|
| 43 | font-size: 13px;
|
---|
| 44 | font-weight: normal;
|
---|
| 45 | }
|
---|
[782] | 46 | </style>
|
---|
| 47 | <script src="<?php echo $base_url;?>assets/js/jwplayer.js" ></script>
|
---|
| 48 | <script>jwplayer.key="0Wkdd5AMtD70O47y3hnZXqCG9CjnX1csi7+foQ==";</script>
|
---|
[780] | 49 | <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
---|
| 50 |
|
---|
| 51 | <!--[if lt IE 9]>
|
---|
| 52 | <script src="<?php echo $base_url;?>assets/js/html5shiv.js"></script>
|
---|
| 53 | <script src="<?php echo $base_url;?>assets/js/respond.min.js"></script>
|
---|
| 54 | <![endif]-->
|
---|
| 55 | </head>
|
---|
| 56 | <?php if (isset($flashScript)) echo $flashScript;?>
|
---|
| 57 | <body>
|
---|
| 58 | <div class="navbar navbar-default navbar-fixed-top" id="navbar">
|
---|
| 59 | <script type="text/javascript">
|
---|
| 60 | try{ace.settings.check('navbar' , 'fixed')}catch(e){}
|
---|
| 61 | </script>
|
---|
| 62 |
|
---|
| 63 | <div class="navbar-container" id="navbar-container">
|
---|
| 64 | <div class="navbar-header pull-left">
|
---|
| 65 | <a href="<?php echo $base_url;?>frontend/lecture" class="navbar-brand">
|
---|
| 66 | <img src="<?php echo $base_url;?>assets/img/logo_soanbai_online_white.png" width="350" class="img-responsive">
|
---|
| 67 | </a><!-- /.brand -->
|
---|
| 68 | </div><!-- /.navbar-header -->
|
---|
| 69 |
|
---|
| 70 | <div class="navbar-header pull-right" role="navigation">
|
---|
| 71 | <ul class="nav ace-nav">
|
---|
| 72 | <li>
|
---|
| 73 | <a data-toggle="dropdown" href="#" class="dropdown-toggle">
|
---|
| 74 | <!--img class="nav-user-photo" src="<?php echo $base_url;?>assets/avatars/user.jpg" alt="Admin's Photo" /-->
|
---|
| 75 | <span class="user-info">
|
---|
| 76 | <small>Xin chà o,</small>
|
---|
| 77 |
|
---|
| 78 | <?php
|
---|
| 79 | $user_info = $this->session->userdata ( 'userInfo' );
|
---|
| 80 | parse_str($user_info['user'], $user);
|
---|
| 81 | if ($user['fullname'] != ''):
|
---|
| 82 | echo $user['fullname'];
|
---|
| 83 | else:
|
---|
| 84 | echo $username;
|
---|
| 85 | endif;
|
---|
| 86 | ?>
|
---|
| 87 | </span>
|
---|
| 88 |
|
---|
| 89 | <i class="icon-caret-down"></i>
|
---|
| 90 | </a>
|
---|
| 91 |
|
---|
| 92 | <ul class="user-menu pull-right dropdown-menu dropdown-yellow dropdown-caret dropdown-close">
|
---|
| 93 | <li>
|
---|
| 94 | <a href="<?php echo $base_url; ?>frontend/user/profile">
|
---|
| 95 | <i class="icon-user"></i>
|
---|
| 96 | ThÎng tin cá nhân
|
---|
| 97 | </a>
|
---|
| 98 | </li>
|
---|
| 99 |
|
---|
| 100 | <li class="divider"></li>
|
---|
| 101 |
|
---|
| 102 | <li>
|
---|
| 103 | <a href="<?php echo $base_url; ?>frontend/home/signout">
|
---|
| 104 | <i class="icon-off"></i>
|
---|
| 105 | Thoát
|
---|
| 106 | </a>
|
---|
| 107 | </li>
|
---|
| 108 | </ul>
|
---|
| 109 | </li>
|
---|
| 110 | </ul><!-- /.ace-nav -->
|
---|
| 111 | </div><!-- /.navbar-header -->
|
---|
| 112 | </div><!-- /.container -->
|
---|
| 113 | </div> |
---|