[313] | 1 | <?php $base_url = base_url();?>
|
---|
[301] | 2 | <!DOCTYPE html>
|
---|
| 3 | <html lang="en">
|
---|
| 4 | <head>
|
---|
| 5 | <meta charset="utf-8" />
|
---|
[452] | 6 | <title>SBG Online</title>
|
---|
[301] | 7 |
|
---|
| 8 | <meta name="description" content="overview & stats" />
|
---|
| 9 | <meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
---|
| 10 |
|
---|
[313] | 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" />
|
---|
[301] | 15 |
|
---|
[313] | 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" />
|
---|
[503] | 19 | <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/custom.css" />
|
---|
[313] | 20 | <script src="<?php echo $base_url;?>assets/js/ace-extra.min.js"></script>
|
---|
[301] | 21 | <style type="text/css" media="screen">
|
---|
[452] | 22 | .sidebar:before, .sidebar {background-color: transparent;}
|
---|
[502] | 23 | .icon-refresh-animate {
|
---|
| 24 | -animation: spin .7s infinite linear;
|
---|
| 25 | -webkit-animation: spin2 .7s infinite linear;
|
---|
| 26 | }
|
---|
| 27 |
|
---|
| 28 | @-webkit-keyframes spin2 {
|
---|
| 29 | from { -webkit-transform: rotate(0deg);}
|
---|
| 30 | to { -webkit-transform: rotate(360deg);}
|
---|
| 31 | }
|
---|
| 32 |
|
---|
| 33 | @keyframes spin {
|
---|
| 34 | from { transform: scale(1) rotate(0deg);}
|
---|
| 35 | to { transform: scale(1) rotate(360deg);}
|
---|
| 36 | }
|
---|
[301] | 37 | </style>
|
---|
| 38 | <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
---|
| 39 |
|
---|
| 40 | <!--[if lt IE 9]>
|
---|
[313] | 41 | <script src="<?php echo $base_url;?>assets/js/html5shiv.js"></script>
|
---|
| 42 | <script src="<?php echo $base_url;?>assets/js/respond.min.js"></script>
|
---|
[301] | 43 | <![endif]-->
|
---|
| 44 | </head>
|
---|
[472] | 45 | <?php if (isset($flashScript)) echo $flashScript;?>
|
---|
[301] | 46 | <body>
|
---|
[313] | 47 | <div class="navbar navbar-default navbar-fixed-top" id="navbar">
|
---|
[301] | 48 | <script type="text/javascript">
|
---|
| 49 | try{ace.settings.check('navbar' , 'fixed')}catch(e){}
|
---|
| 50 | </script>
|
---|
| 51 |
|
---|
| 52 | <div class="navbar-container" id="navbar-container">
|
---|
| 53 | <div class="navbar-header pull-left">
|
---|
[480] | 54 | <a href="<?php echo $base_url;?>frontend/lecture" class="navbar-brand">
|
---|
[313] | 55 | <img src="<?php echo $base_url;?>assets/img/logo_soanbai_online_white.png" width="350" class="img-responsive">
|
---|
[301] | 56 | </a><!-- /.brand -->
|
---|
| 57 | </div><!-- /.navbar-header -->
|
---|
| 58 |
|
---|
| 59 | <div class="navbar-header pull-right" role="navigation">
|
---|
| 60 | <ul class="nav ace-nav">
|
---|
| 61 | <li>
|
---|
| 62 | <a data-toggle="dropdown" href="#" class="dropdown-toggle">
|
---|
[480] | 63 | <!--img class="nav-user-photo" src="<?php echo $base_url;?>assets/avatars/user.jpg" alt="Admin's Photo" /-->
|
---|
[301] | 64 | <span class="user-info">
|
---|
| 65 | <small>Xin chà o,</small>
|
---|
[466] | 66 | <?php echo @$username; ?>
|
---|
[301] | 67 | </span>
|
---|
| 68 |
|
---|
| 69 | <i class="icon-caret-down"></i>
|
---|
| 70 | </a>
|
---|
| 71 |
|
---|
| 72 | <ul class="user-menu pull-right dropdown-menu dropdown-yellow dropdown-caret dropdown-close">
|
---|
| 73 | <li>
|
---|
[456] | 74 | <a href="<?php echo $base_url; ?>frontend/user/profile">
|
---|
[301] | 75 | <i class="icon-user"></i>
|
---|
| 76 | ThÎng tin cá nhân
|
---|
| 77 | </a>
|
---|
| 78 | </li>
|
---|
| 79 |
|
---|
| 80 | <li class="divider"></li>
|
---|
| 81 |
|
---|
| 82 | <li>
|
---|
[388] | 83 | <a href="<?php echo $base_url; ?>frontend/home/signout">
|
---|
[301] | 84 | <i class="icon-off"></i>
|
---|
| 85 | Thoát
|
---|
| 86 | </a>
|
---|
| 87 | </li>
|
---|
| 88 | </ul>
|
---|
| 89 | </li>
|
---|
| 90 | </ul><!-- /.ace-nav -->
|
---|
| 91 | </div><!-- /.navbar-header -->
|
---|
| 92 | </div><!-- /.container -->
|
---|
| 93 | </div> |
---|