widgets.html 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>AdminLTE 2 | Widgets</title>
  7. <!-- Tell the browser to be responsive to screen width -->
  8. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  9. <!-- Bootstrap 3.3.6 -->
  10. <link rel="stylesheet" href="../bootstrap/css/bootstrap.min.css">
  11. <!-- Font Awesome -->
  12. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
  13. <!-- Ionicons -->
  14. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
  15. <!-- Theme style -->
  16. <link rel="stylesheet" href="../dist/css/AdminLTE.min.css">
  17. <!-- AdminLTE Skins. Choose a skin from the css/skins
  18. folder instead of downloading all of them to reduce the load. -->
  19. <link rel="stylesheet" href="../dist/css/skins/_all-skins.min.css">
  20. <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  21. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  22. <!--[if lt IE 9]>
  23. <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
  24. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  25. <![endif]-->
  26. </head>
  27. <body class="hold-transition skin-blue sidebar-mini">
  28. <div class="wrapper">
  29. <header class="main-header">
  30. <!-- Logo -->
  31. <a href="../index2.html" class="logo">
  32. <!-- mini logo for sidebar mini 50x50 pixels -->
  33. <span class="logo-mini"><b>A</b>LT</span>
  34. <!-- logo for regular state and mobile devices -->
  35. <span class="logo-lg"><b>Admin</b>LTE</span>
  36. </a>
  37. <!-- Header Navbar: style can be found in header.less -->
  38. <nav class="navbar navbar-static-top">
  39. <!-- Sidebar toggle button-->
  40. <a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
  41. <span class="sr-only">Toggle navigation</span>
  42. <span class="icon-bar"></span>
  43. <span class="icon-bar"></span>
  44. <span class="icon-bar"></span>
  45. </a>
  46. <div class="navbar-custom-menu">
  47. <ul class="nav navbar-nav">
  48. <!-- Messages: style can be found in dropdown.less-->
  49. <li class="dropdown messages-menu">
  50. <a href="#" class="dropdown-toggle" data-toggle="dropdown">
  51. <i class="fa fa-envelope-o"></i>
  52. <span class="label label-success">4</span>
  53. </a>
  54. <ul class="dropdown-menu">
  55. <li class="header">You have 4 messages</li>
  56. <li>
  57. <!-- inner menu: contains the actual data -->
  58. <ul class="menu">
  59. <li><!-- start message -->
  60. <a href="#">
  61. <div class="pull-left">
  62. <img src="../dist/img/user2-160x160.jpg" class="img-circle" alt="User Image">
  63. </div>
  64. <h4>
  65. Support Team
  66. <small><i class="fa fa-clock-o"></i> 5 mins</small>
  67. </h4>
  68. <p>Why not buy a new awesome theme?</p>
  69. </a>
  70. </li>
  71. <!-- end message -->
  72. <li>
  73. <a href="#">
  74. <div class="pull-left">
  75. <img src="../dist/img/user3-128x128.jpg" class="img-circle" alt="User Image">
  76. </div>
  77. <h4>
  78. AdminLTE Design Team
  79. <small><i class="fa fa-clock-o"></i> 2 hours</small>
  80. </h4>
  81. <p>Why not buy a new awesome theme?</p>
  82. </a>
  83. </li>
  84. <li>
  85. <a href="#">
  86. <div class="pull-left">
  87. <img src="../dist/img/user4-128x128.jpg" class="img-circle" alt="User Image">
  88. </div>
  89. <h4>
  90. Developers
  91. <small><i class="fa fa-clock-o"></i> Today</small>
  92. </h4>
  93. <p>Why not buy a new awesome theme?</p>
  94. </a>
  95. </li>
  96. <li>
  97. <a href="#">
  98. <div class="pull-left">
  99. <img src="../dist/img/user3-128x128.jpg" class="img-circle" alt="User Image">
  100. </div>
  101. <h4>
  102. Sales Department
  103. <small><i class="fa fa-clock-o"></i> Yesterday</small>
  104. </h4>
  105. <p>Why not buy a new awesome theme?</p>
  106. </a>
  107. </li>
  108. <li>
  109. <a href="#">
  110. <div class="pull-left">
  111. <img src="../dist/img/user4-128x128.jpg" class="img-circle" alt="User Image">
  112. </div>
  113. <h4>
  114. Reviewers
  115. <small><i class="fa fa-clock-o"></i> 2 days</small>
  116. </h4>
  117. <p>Why not buy a new awesome theme?</p>
  118. </a>
  119. </li>
  120. </ul>
  121. </li>
  122. <li class="footer"><a href="#">See All Messages</a></li>
  123. </ul>
  124. </li>
  125. <!-- Notifications: style can be found in dropdown.less -->
  126. <li class="dropdown notifications-menu">
  127. <a href="#" class="dropdown-toggle" data-toggle="dropdown">
  128. <i class="fa fa-bell-o"></i>
  129. <span class="label label-warning">10</span>
  130. </a>
  131. <ul class="dropdown-menu">
  132. <li class="header">You have 10 notifications</li>
  133. <li>
  134. <!-- inner menu: contains the actual data -->
  135. <ul class="menu">
  136. <li>
  137. <a href="#">
  138. <i class="fa fa-users text-aqua"></i> 5 new members joined today
  139. </a>
  140. </li>
  141. <li>
  142. <a href="#">
  143. <i class="fa fa-warning text-yellow"></i> Very long description here that may not fit into the
  144. page and may cause design problems
  145. </a>
  146. </li>
  147. <li>
  148. <a href="#">
  149. <i class="fa fa-users text-red"></i> 5 new members joined
  150. </a>
  151. </li>
  152. <li>
  153. <a href="#">
  154. <i class="fa fa-shopping-cart text-green"></i> 25 sales made
  155. </a>
  156. </li>
  157. <li>
  158. <a href="#">
  159. <i class="fa fa-user text-light-blue"></i> You changed your username
  160. </a>
  161. </li>
  162. </ul>
  163. </li>
  164. <li class="footer"><a href="#">View all</a></li>
  165. </ul>
  166. </li>
  167. <!-- Tasks: style can be found in dropdown.less -->
  168. <li class="dropdown tasks-menu">
  169. <a href="#" class="dropdown-toggle" data-toggle="dropdown">
  170. <i class="fa fa-flag-o"></i>
  171. <span class="label label-danger">9</span>
  172. </a>
  173. <ul class="dropdown-menu">
  174. <li class="header">You have 9 tasks</li>
  175. <li>
  176. <!-- inner menu: contains the actual data -->
  177. <ul class="menu">
  178. <li><!-- Task item -->
  179. <a href="#">
  180. <h3>
  181. Design some buttons
  182. <small class="pull-right">20%</small>
  183. </h3>
  184. <div class="progress xs">
  185. <div class="progress-bar progress-bar-aqua" style="width: 20%" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100">
  186. <span class="sr-only">20% Complete</span>
  187. </div>
  188. </div>
  189. </a>
  190. </li>
  191. <!-- end task item -->
  192. <li><!-- Task item -->
  193. <a href="#">
  194. <h3>
  195. Create a nice theme
  196. <small class="pull-right">40%</small>
  197. </h3>
  198. <div class="progress xs">
  199. <div class="progress-bar progress-bar-green" style="width: 40%" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100">
  200. <span class="sr-only">40% Complete</span>
  201. </div>
  202. </div>
  203. </a>
  204. </li>
  205. <!-- end task item -->
  206. <li><!-- Task item -->
  207. <a href="#">
  208. <h3>
  209. Some task I need to do
  210. <small class="pull-right">60%</small>
  211. </h3>
  212. <div class="progress xs">
  213. <div class="progress-bar progress-bar-red" style="width: 60%" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100">
  214. <span class="sr-only">60% Complete</span>
  215. </div>
  216. </div>
  217. </a>
  218. </li>
  219. <!-- end task item -->
  220. <li><!-- Task item -->
  221. <a href="#">
  222. <h3>
  223. Make beautiful transitions
  224. <small class="pull-right">80%</small>
  225. </h3>
  226. <div class="progress xs">
  227. <div class="progress-bar progress-bar-yellow" style="width: 80%" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100">
  228. <span class="sr-only">80% Complete</span>
  229. </div>
  230. </div>
  231. </a>
  232. </li>
  233. <!-- end task item -->
  234. </ul>
  235. </li>
  236. <li class="footer">
  237. <a href="#">View all tasks</a>
  238. </li>
  239. </ul>
  240. </li>
  241. <!-- User Account: style can be found in dropdown.less -->
  242. <li class="dropdown user user-menu">
  243. <a href="#" class="dropdown-toggle" data-toggle="dropdown">
  244. <img src="../dist/img/user2-160x160.jpg" class="user-image" alt="User Image">
  245. <span class="hidden-xs">Alexander Pierce</span>
  246. </a>
  247. <ul class="dropdown-menu">
  248. <!-- User image -->
  249. <li class="user-header">
  250. <img src="../dist/img/user2-160x160.jpg" class="img-circle" alt="User Image">
  251. <p>
  252. Alexander Pierce - Web Developer
  253. <small>Member since Nov. 2012</small>
  254. </p>
  255. </li>
  256. <!-- Menu Body -->
  257. <li class="user-body">
  258. <div class="row">
  259. <div class="col-xs-4 text-center">
  260. <a href="#">Followers</a>
  261. </div>
  262. <div class="col-xs-4 text-center">
  263. <a href="#">Sales</a>
  264. </div>
  265. <div class="col-xs-4 text-center">
  266. <a href="#">Friends</a>
  267. </div>
  268. </div>
  269. <!-- /.row -->
  270. </li>
  271. <!-- Menu Footer-->
  272. <li class="user-footer">
  273. <div class="pull-left">
  274. <a href="#" class="btn btn-default btn-flat">Profile</a>
  275. </div>
  276. <div class="pull-right">
  277. <a href="#" class="btn btn-default btn-flat">Sign out</a>
  278. </div>
  279. </li>
  280. </ul>
  281. </li>
  282. <!-- Control Sidebar Toggle Button -->
  283. <li>
  284. <a href="#" data-toggle="control-sidebar"><i class="fa fa-gears"></i></a>
  285. </li>
  286. </ul>
  287. </div>
  288. </nav>
  289. </header>
  290. <!-- Left side column. contains the logo and sidebar -->
  291. <aside class="main-sidebar">
  292. <!-- sidebar: style can be found in sidebar.less -->
  293. <section class="sidebar">
  294. <!-- Sidebar user panel -->
  295. <div class="user-panel">
  296. <div class="pull-left image">
  297. <img src="../dist/img/user2-160x160.jpg" class="img-circle" alt="User Image">
  298. </div>
  299. <div class="pull-left info">
  300. <p>Alexander Pierce</p>
  301. <a href="#"><i class="fa fa-circle text-success"></i> Online</a>
  302. </div>
  303. </div>
  304. <!-- search form -->
  305. <form action="#" method="get" class="sidebar-form">
  306. <div class="input-group">
  307. <input type="text" name="q" class="form-control" placeholder="Search...">
  308. <span class="input-group-btn">
  309. <button type="submit" name="search" id="search-btn" class="btn btn-flat"><i class="fa fa-search"></i>
  310. </button>
  311. </span>
  312. </div>
  313. </form>
  314. <!-- /.search form -->
  315. <!-- sidebar menu: : style can be found in sidebar.less -->
  316. <ul class="sidebar-menu">
  317. <li class="header">MAIN NAVIGATION</li>
  318. <li class="treeview">
  319. <a href="#">
  320. <i class="fa fa-dashboard"></i> <span>Dashboard</span>
  321. <span class="pull-right-container">
  322. <i class="fa fa-angle-left pull-right"></i>
  323. </span>
  324. </a>
  325. <ul class="treeview-menu">
  326. <li><a href="../index.html"><i class="fa fa-circle-o"></i> Dashboard v1</a></li>
  327. <li><a href="../index2.html"><i class="fa fa-circle-o"></i> Dashboard v2</a></li>
  328. </ul>
  329. </li>
  330. <li class="treeview">
  331. <a href="#">
  332. <i class="fa fa-files-o"></i>
  333. <span>Layout Options</span>
  334. <span class="pull-right-container">
  335. <span class="label label-primary pull-right">4</span>
  336. </span>
  337. </a>
  338. <ul class="treeview-menu">
  339. <li><a href="layout/top-nav.html"><i class="fa fa-circle-o"></i> Top Navigation</a></li>
  340. <li><a href="layout/boxed.html"><i class="fa fa-circle-o"></i> Boxed</a></li>
  341. <li><a href="layout/fixed.html"><i class="fa fa-circle-o"></i> Fixed</a></li>
  342. <li><a href="layout/collapsed-sidebar.html"><i class="fa fa-circle-o"></i> Collapsed Sidebar</a></li>
  343. </ul>
  344. </li>
  345. <li class="active">
  346. <a href="widgets.html">
  347. <i class="fa fa-th"></i> <span>Widgets</span>
  348. <span class="pull-right-container">
  349. <small class="label pull-right bg-green">new</small>
  350. </span>
  351. </a>
  352. </li>
  353. <li class="treeview">
  354. <a href="#">
  355. <i class="fa fa-pie-chart"></i>
  356. <span>Charts</span>
  357. <span class="pull-right-container">
  358. <i class="fa fa-angle-left pull-right"></i>
  359. </span>
  360. </a>
  361. <ul class="treeview-menu">
  362. <li><a href="charts/chartjs.html"><i class="fa fa-circle-o"></i> ChartJS</a></li>
  363. <li><a href="charts/morris.html"><i class="fa fa-circle-o"></i> Morris</a></li>
  364. <li><a href="charts/flot.html"><i class="fa fa-circle-o"></i> Flot</a></li>
  365. <li><a href="charts/inline.html"><i class="fa fa-circle-o"></i> Inline charts</a></li>
  366. </ul>
  367. </li>
  368. <li class="treeview">
  369. <a href="#">
  370. <i class="fa fa-laptop"></i>
  371. <span>UI Elements</span>
  372. <span class="pull-right-container">
  373. <i class="fa fa-angle-left pull-right"></i>
  374. </span>
  375. </a>
  376. <ul class="treeview-menu">
  377. <li><a href="UI/general.html"><i class="fa fa-circle-o"></i> General</a></li>
  378. <li><a href="UI/icons.html"><i class="fa fa-circle-o"></i> Icons</a></li>
  379. <li><a href="UI/buttons.html"><i class="fa fa-circle-o"></i> Buttons</a></li>
  380. <li><a href="UI/sliders.html"><i class="fa fa-circle-o"></i> Sliders</a></li>
  381. <li><a href="UI/timeline.html"><i class="fa fa-circle-o"></i> Timeline</a></li>
  382. <li><a href="UI/modals.html"><i class="fa fa-circle-o"></i> Modals</a></li>
  383. </ul>
  384. </li>
  385. <li class="treeview">
  386. <a href="#">
  387. <i class="fa fa-edit"></i> <span>Forms</span>
  388. <span class="pull-right-container">
  389. <i class="fa fa-angle-left pull-right"></i>
  390. </span>
  391. </a>
  392. <ul class="treeview-menu">
  393. <li><a href="forms/general.html"><i class="fa fa-circle-o"></i> General Elements</a></li>
  394. <li><a href="forms/advanced.html"><i class="fa fa-circle-o"></i> Advanced Elements</a></li>
  395. <li><a href="forms/editors.html"><i class="fa fa-circle-o"></i> Editors</a></li>
  396. </ul>
  397. </li>
  398. <li class="treeview">
  399. <a href="#">
  400. <i class="fa fa-table"></i> <span>Tables</span>
  401. <span class="pull-right-container">
  402. <i class="fa fa-angle-left pull-right"></i>
  403. </span>
  404. </a>
  405. <ul class="treeview-menu">
  406. <li><a href="tables/simple.html"><i class="fa fa-circle-o"></i> Simple tables</a></li>
  407. <li><a href="tables/data.html"><i class="fa fa-circle-o"></i> Data tables</a></li>
  408. </ul>
  409. </li>
  410. <li>
  411. <a href="calendar.html">
  412. <i class="fa fa-calendar"></i> <span>Calendar</span>
  413. <span class="pull-right-container">
  414. <small class="label pull-right bg-red">3</small>
  415. <small class="label pull-right bg-blue">17</small>
  416. </span>
  417. </a>
  418. </li>
  419. <li>
  420. <a href="mailbox/mailbox.html">
  421. <i class="fa fa-envelope"></i> <span>Mailbox</span>
  422. <span class="pull-right-container">
  423. <small class="label pull-right bg-yellow">12</small>
  424. <small class="label pull-right bg-green">16</small>
  425. <small class="label pull-right bg-red">5</small>
  426. </span>
  427. </a>
  428. </li>
  429. <li class="treeview">
  430. <a href="#">
  431. <i class="fa fa-folder"></i> <span>Examples</span>
  432. <span class="pull-right-container">
  433. <i class="fa fa-angle-left pull-right"></i>
  434. </span>
  435. </a>
  436. <ul class="treeview-menu">
  437. <li><a href="examples/invoice.html"><i class="fa fa-circle-o"></i> Invoice</a></li>
  438. <li><a href="examples/profile.html"><i class="fa fa-circle-o"></i> Profile</a></li>
  439. <li><a href="examples/login.html"><i class="fa fa-circle-o"></i> Login</a></li>
  440. <li><a href="examples/register.html"><i class="fa fa-circle-o"></i> Register</a></li>
  441. <li><a href="examples/lockscreen.html"><i class="fa fa-circle-o"></i> Lockscreen</a></li>
  442. <li><a href="examples/404.html"><i class="fa fa-circle-o"></i> 404 Error</a></li>
  443. <li><a href="examples/500.html"><i class="fa fa-circle-o"></i> 500 Error</a></li>
  444. <li><a href="examples/blank.html"><i class="fa fa-circle-o"></i> Blank Page</a></li>
  445. <li><a href="examples/pace.html"><i class="fa fa-circle-o"></i> Pace Page</a></li>
  446. </ul>
  447. </li>
  448. <li class="treeview">
  449. <a href="#">
  450. <i class="fa fa-share"></i> <span>Multilevel</span>
  451. <span class="pull-right-container">
  452. <i class="fa fa-angle-left pull-right"></i>
  453. </span>
  454. </a>
  455. <ul class="treeview-menu">
  456. <li><a href="#"><i class="fa fa-circle-o"></i> Level One</a></li>
  457. <li>
  458. <a href="#"><i class="fa fa-circle-o"></i> Level One
  459. <span class="pull-right-container">
  460. <i class="fa fa-angle-left pull-right"></i>
  461. </span>
  462. </a>
  463. <ul class="treeview-menu">
  464. <li><a href="#"><i class="fa fa-circle-o"></i> Level Two</a></li>
  465. <li>
  466. <a href="#"><i class="fa fa-circle-o"></i> Level Two
  467. <span class="pull-right-container">
  468. <i class="fa fa-angle-left pull-right"></i>
  469. </span>
  470. </a>
  471. <ul class="treeview-menu">
  472. <li><a href="#"><i class="fa fa-circle-o"></i> Level Three</a></li>
  473. <li><a href="#"><i class="fa fa-circle-o"></i> Level Three</a></li>
  474. </ul>
  475. </li>
  476. </ul>
  477. </li>
  478. <li><a href="#"><i class="fa fa-circle-o"></i> Level One</a></li>
  479. </ul>
  480. </li>
  481. <li><a href="../documentation/index.html"><i class="fa fa-book"></i> <span>Documentation</span></a></li>
  482. <li class="header">LABELS</li>
  483. <li><a href="#"><i class="fa fa-circle-o text-red"></i> <span>Important</span></a></li>
  484. <li><a href="#"><i class="fa fa-circle-o text-yellow"></i> <span>Warning</span></a></li>
  485. <li><a href="#"><i class="fa fa-circle-o text-aqua"></i> <span>Information</span></a></li>
  486. </ul>
  487. </section>
  488. <!-- /.sidebar -->
  489. </aside>
  490. <!-- Content Wrapper. Contains page content -->
  491. <div class="content-wrapper">
  492. <!-- Content Header (Page header) -->
  493. <section class="content-header">
  494. <h1>
  495. Widgets
  496. <small>Preview page</small>
  497. </h1>
  498. <ol class="breadcrumb">
  499. <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
  500. <li class="active">Widgets</li>
  501. </ol>
  502. </section>
  503. <!-- Main content -->
  504. <section class="content">
  505. <div class="row">
  506. <div class="col-md-3 col-sm-6 col-xs-12">
  507. <div class="info-box">
  508. <span class="info-box-icon bg-aqua"><i class="fa fa-envelope-o"></i></span>
  509. <div class="info-box-content">
  510. <span class="info-box-text">Messages</span>
  511. <span class="info-box-number">1,410</span>
  512. </div>
  513. <!-- /.info-box-content -->
  514. </div>
  515. <!-- /.info-box -->
  516. </div>
  517. <!-- /.col -->
  518. <div class="col-md-3 col-sm-6 col-xs-12">
  519. <div class="info-box">
  520. <span class="info-box-icon bg-green"><i class="fa fa-flag-o"></i></span>
  521. <div class="info-box-content">
  522. <span class="info-box-text">Bookmarks</span>
  523. <span class="info-box-number">410</span>
  524. </div>
  525. <!-- /.info-box-content -->
  526. </div>
  527. <!-- /.info-box -->
  528. </div>
  529. <!-- /.col -->
  530. <div class="col-md-3 col-sm-6 col-xs-12">
  531. <div class="info-box">
  532. <span class="info-box-icon bg-yellow"><i class="fa fa-files-o"></i></span>
  533. <div class="info-box-content">
  534. <span class="info-box-text">Uploads</span>
  535. <span class="info-box-number">13,648</span>
  536. </div>
  537. <!-- /.info-box-content -->
  538. </div>
  539. <!-- /.info-box -->
  540. </div>
  541. <!-- /.col -->
  542. <div class="col-md-3 col-sm-6 col-xs-12">
  543. <div class="info-box">
  544. <span class="info-box-icon bg-red"><i class="fa fa-star-o"></i></span>
  545. <div class="info-box-content">
  546. <span class="info-box-text">Likes</span>
  547. <span class="info-box-number">93,139</span>
  548. </div>
  549. <!-- /.info-box-content -->
  550. </div>
  551. <!-- /.info-box -->
  552. </div>
  553. <!-- /.col -->
  554. </div>
  555. <!-- /.row -->
  556. <!-- =========================================================== -->
  557. <div class="row">
  558. <div class="col-md-3 col-sm-6 col-xs-12">
  559. <div class="info-box bg-aqua">
  560. <span class="info-box-icon"><i class="fa fa-bookmark-o"></i></span>
  561. <div class="info-box-content">
  562. <span class="info-box-text">Bookmarks</span>
  563. <span class="info-box-number">41,410</span>
  564. <div class="progress">
  565. <div class="progress-bar" style="width: 70%"></div>
  566. </div>
  567. <span class="progress-description">
  568. 70% Increase in 30 Days
  569. </span>
  570. </div>
  571. <!-- /.info-box-content -->
  572. </div>
  573. <!-- /.info-box -->
  574. </div>
  575. <!-- /.col -->
  576. <div class="col-md-3 col-sm-6 col-xs-12">
  577. <div class="info-box bg-green">
  578. <span class="info-box-icon"><i class="fa fa-thumbs-o-up"></i></span>
  579. <div class="info-box-content">
  580. <span class="info-box-text">Likes</span>
  581. <span class="info-box-number">41,410</span>
  582. <div class="progress">
  583. <div class="progress-bar" style="width: 70%"></div>
  584. </div>
  585. <span class="progress-description">
  586. 70% Increase in 30 Days
  587. </span>
  588. </div>
  589. <!-- /.info-box-content -->
  590. </div>
  591. <!-- /.info-box -->
  592. </div>
  593. <!-- /.col -->
  594. <div class="col-md-3 col-sm-6 col-xs-12">
  595. <div class="info-box bg-yellow">
  596. <span class="info-box-icon"><i class="fa fa-calendar"></i></span>
  597. <div class="info-box-content">
  598. <span class="info-box-text">Events</span>
  599. <span class="info-box-number">41,410</span>
  600. <div class="progress">
  601. <div class="progress-bar" style="width: 70%"></div>
  602. </div>
  603. <span class="progress-description">
  604. 70% Increase in 30 Days
  605. </span>
  606. </div>
  607. <!-- /.info-box-content -->
  608. </div>
  609. <!-- /.info-box -->
  610. </div>
  611. <!-- /.col -->
  612. <div class="col-md-3 col-sm-6 col-xs-12">
  613. <div class="info-box bg-red">
  614. <span class="info-box-icon"><i class="fa fa-comments-o"></i></span>
  615. <div class="info-box-content">
  616. <span class="info-box-text">Comments</span>
  617. <span class="info-box-number">41,410</span>
  618. <div class="progress">
  619. <div class="progress-bar" style="width: 70%"></div>
  620. </div>
  621. <span class="progress-description">
  622. 70% Increase in 30 Days
  623. </span>
  624. </div>
  625. <!-- /.info-box-content -->
  626. </div>
  627. <!-- /.info-box -->
  628. </div>
  629. <!-- /.col -->
  630. </div>
  631. <!-- /.row -->
  632. <!-- =========================================================== -->
  633. <!-- Small boxes (Stat box) -->
  634. <div class="row">
  635. <div class="col-lg-3 col-xs-6">
  636. <!-- small box -->
  637. <div class="small-box bg-aqua">
  638. <div class="inner">
  639. <h3>150</h3>
  640. <p>New Orders</p>
  641. </div>
  642. <div class="icon">
  643. <i class="fa fa-shopping-cart"></i>
  644. </div>
  645. <a href="#" class="small-box-footer">
  646. More info <i class="fa fa-arrow-circle-right"></i>
  647. </a>
  648. </div>
  649. </div>
  650. <!-- ./col -->
  651. <div class="col-lg-3 col-xs-6">
  652. <!-- small box -->
  653. <div class="small-box bg-green">
  654. <div class="inner">
  655. <h3>53<sup style="font-size: 20px">%</sup></h3>
  656. <p>Bounce Rate</p>
  657. </div>
  658. <div class="icon">
  659. <i class="ion ion-stats-bars"></i>
  660. </div>
  661. <a href="#" class="small-box-footer">
  662. More info <i class="fa fa-arrow-circle-right"></i>
  663. </a>
  664. </div>
  665. </div>
  666. <!-- ./col -->
  667. <div class="col-lg-3 col-xs-6">
  668. <!-- small box -->
  669. <div class="small-box bg-yellow">
  670. <div class="inner">
  671. <h3>44</h3>
  672. <p>User Registrations</p>
  673. </div>
  674. <div class="icon">
  675. <i class="ion ion-person-add"></i>
  676. </div>
  677. <a href="#" class="small-box-footer">
  678. More info <i class="fa fa-arrow-circle-right"></i>
  679. </a>
  680. </div>
  681. </div>
  682. <!-- ./col -->
  683. <div class="col-lg-3 col-xs-6">
  684. <!-- small box -->
  685. <div class="small-box bg-red">
  686. <div class="inner">
  687. <h3>65</h3>
  688. <p>Unique Visitors</p>
  689. </div>
  690. <div class="icon">
  691. <i class="ion ion-pie-graph"></i>
  692. </div>
  693. <a href="#" class="small-box-footer">
  694. More info <i class="fa fa-arrow-circle-right"></i>
  695. </a>
  696. </div>
  697. </div>
  698. <!-- ./col -->
  699. </div>
  700. <!-- /.row -->
  701. <!-- =========================================================== -->
  702. <div class="row">
  703. <div class="col-md-3">
  704. <div class="box box-default collapsed-box">
  705. <div class="box-header with-border">
  706. <h3 class="box-title">Expandable</h3>
  707. <div class="box-tools pull-right">
  708. <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-plus"></i>
  709. </button>
  710. </div>
  711. <!-- /.box-tools -->
  712. </div>
  713. <!-- /.box-header -->
  714. <div class="box-body">
  715. The body of the box
  716. </div>
  717. <!-- /.box-body -->
  718. </div>
  719. <!-- /.box -->
  720. </div>
  721. <!-- /.col -->
  722. <div class="col-md-3">
  723. <div class="box box-success">
  724. <div class="box-header with-border">
  725. <h3 class="box-title">Removable</h3>
  726. <div class="box-tools pull-right">
  727. <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
  728. </div>
  729. <!-- /.box-tools -->
  730. </div>
  731. <!-- /.box-header -->
  732. <div class="box-body">
  733. The body of the box
  734. </div>
  735. <!-- /.box-body -->
  736. </div>
  737. <!-- /.box -->
  738. </div>
  739. <!-- /.col -->
  740. <div class="col-md-3">
  741. <div class="box box-warning">
  742. <div class="box-header with-border">
  743. <h3 class="box-title">Collapsable</h3>
  744. <div class="box-tools pull-right">
  745. <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
  746. </button>
  747. </div>
  748. <!-- /.box-tools -->
  749. </div>
  750. <!-- /.box-header -->
  751. <div class="box-body">
  752. The body of the box
  753. </div>
  754. <!-- /.box-body -->
  755. </div>
  756. <!-- /.box -->
  757. </div>
  758. <!-- /.col -->
  759. <div class="col-md-3">
  760. <div class="box box-danger">
  761. <div class="box-header">
  762. <h3 class="box-title">Loading state</h3>
  763. </div>
  764. <div class="box-body">
  765. The body of the box
  766. </div>
  767. <!-- /.box-body -->
  768. <!-- Loading (remove the following to stop the loading)-->
  769. <div class="overlay">
  770. <i class="fa fa-refresh fa-spin"></i>
  771. </div>
  772. <!-- end loading -->
  773. </div>
  774. <!-- /.box -->
  775. </div>
  776. <!-- /.col -->
  777. </div>
  778. <!-- /.row -->
  779. <!-- =========================================================== -->
  780. <div class="row">
  781. <div class="col-md-3">
  782. <div class="box box-default collapsed-box box-solid">
  783. <div class="box-header with-border">
  784. <h3 class="box-title">Expandable</h3>
  785. <div class="box-tools pull-right">
  786. <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-plus"></i>
  787. </button>
  788. </div>
  789. <!-- /.box-tools -->
  790. </div>
  791. <!-- /.box-header -->
  792. <div class="box-body">
  793. The body of the box
  794. </div>
  795. <!-- /.box-body -->
  796. </div>
  797. <!-- /.box -->
  798. </div>
  799. <!-- /.col -->
  800. <div class="col-md-3">
  801. <div class="box box-success box-solid">
  802. <div class="box-header with-border">
  803. <h3 class="box-title">Removable</h3>
  804. <div class="box-tools pull-right">
  805. <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
  806. </div>
  807. <!-- /.box-tools -->
  808. </div>
  809. <!-- /.box-header -->
  810. <div class="box-body">
  811. The body of the box
  812. </div>
  813. <!-- /.box-body -->
  814. </div>
  815. <!-- /.box -->
  816. </div>
  817. <!-- /.col -->
  818. <div class="col-md-3">
  819. <div class="box box-warning box-solid">
  820. <div class="box-header with-border">
  821. <h3 class="box-title">Collapsable</h3>
  822. <div class="box-tools pull-right">
  823. <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
  824. </button>
  825. </div>
  826. <!-- /.box-tools -->
  827. </div>
  828. <!-- /.box-header -->
  829. <div class="box-body">
  830. The body of the box
  831. </div>
  832. <!-- /.box-body -->
  833. </div>
  834. <!-- /.box -->
  835. </div>
  836. <!-- /.col -->
  837. <div class="col-md-3">
  838. <div class="box box-danger box-solid">
  839. <div class="box-header">
  840. <h3 class="box-title">Loading state</h3>
  841. </div>
  842. <div class="box-body">
  843. The body of the box
  844. </div>
  845. <!-- /.box-body -->
  846. <!-- Loading (remove the following to stop the loading)-->
  847. <div class="overlay">
  848. <i class="fa fa-refresh fa-spin"></i>
  849. </div>
  850. <!-- end loading -->
  851. </div>
  852. <!-- /.box -->
  853. </div>
  854. <!-- /.col -->
  855. </div>
  856. <!-- /.row -->
  857. <!-- =========================================================== -->
  858. <!-- Direct Chat -->
  859. <div class="row">
  860. <div class="col-md-3">
  861. <!-- DIRECT CHAT PRIMARY -->
  862. <div class="box box-primary direct-chat direct-chat-primary">
  863. <div class="box-header with-border">
  864. <h3 class="box-title">Direct Chat</h3>
  865. <div class="box-tools pull-right">
  866. <span data-toggle="tooltip" title="3 New Messages" class="badge bg-light-blue">3</span>
  867. <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
  868. </button>
  869. <button type="button" class="btn btn-box-tool" data-toggle="tooltip" title="Contacts" data-widget="chat-pane-toggle">
  870. <i class="fa fa-comments"></i></button>
  871. <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
  872. </div>
  873. </div>
  874. <!-- /.box-header -->
  875. <div class="box-body">
  876. <!-- Conversations are loaded here -->
  877. <div class="direct-chat-messages">
  878. <!-- Message. Default to the left -->
  879. <div class="direct-chat-msg">
  880. <div class="direct-chat-info clearfix">
  881. <span class="direct-chat-name pull-left">Alexander Pierce</span>
  882. <span class="direct-chat-timestamp pull-right">23 Jan 2:00 pm</span>
  883. </div>
  884. <!-- /.direct-chat-info -->
  885. <img class="direct-chat-img" src="../dist/img/user1-128x128.jpg" alt="Message User Image"><!-- /.direct-chat-img -->
  886. <div class="direct-chat-text">
  887. Is this template really for free? That's unbelievable!
  888. </div>
  889. <!-- /.direct-chat-text -->
  890. </div>
  891. <!-- /.direct-chat-msg -->
  892. <!-- Message to the right -->
  893. <div class="direct-chat-msg right">
  894. <div class="direct-chat-info clearfix">
  895. <span class="direct-chat-name pull-right">Sarah Bullock</span>
  896. <span class="direct-chat-timestamp pull-left">23 Jan 2:05 pm</span>
  897. </div>
  898. <!-- /.direct-chat-info -->
  899. <img class="direct-chat-img" src="../dist/img/user3-128x128.jpg" alt="Message User Image"><!-- /.direct-chat-img -->
  900. <div class="direct-chat-text">
  901. You better believe it!
  902. </div>
  903. <!-- /.direct-chat-text -->
  904. </div>
  905. <!-- /.direct-chat-msg -->
  906. </div>
  907. <!--/.direct-chat-messages-->
  908. <!-- Contacts are loaded here -->
  909. <div class="direct-chat-contacts">
  910. <ul class="contacts-list">
  911. <li>
  912. <a href="#">
  913. <img class="contacts-list-img" src="../dist/img/user1-128x128.jpg" alt="User Image">
  914. <div class="contacts-list-info">
  915. <span class="contacts-list-name">
  916. Count Dracula
  917. <small class="contacts-list-date pull-right">2/28/2015</small>
  918. </span>
  919. <span class="contacts-list-msg">How have you been? I was...</span>
  920. </div>
  921. <!-- /.contacts-list-info -->
  922. </a>
  923. </li>
  924. <!-- End Contact Item -->
  925. </ul>
  926. <!-- /.contatcts-list -->
  927. </div>
  928. <!-- /.direct-chat-pane -->
  929. </div>
  930. <!-- /.box-body -->
  931. <div class="box-footer">
  932. <form action="#" method="post">
  933. <div class="input-group">
  934. <input type="text" name="message" placeholder="Type Message ..." class="form-control">
  935. <span class="input-group-btn">
  936. <button type="submit" class="btn btn-primary btn-flat">Send</button>
  937. </span>
  938. </div>
  939. </form>
  940. </div>
  941. <!-- /.box-footer-->
  942. </div>
  943. <!--/.direct-chat -->
  944. </div>
  945. <!-- /.col -->
  946. <div class="col-md-3">
  947. <!-- DIRECT CHAT SUCCESS -->
  948. <div class="box box-success direct-chat direct-chat-success">
  949. <div class="box-header with-border">
  950. <h3 class="box-title">Direct Chat</h3>
  951. <div class="box-tools pull-right">
  952. <span data-toggle="tooltip" title="3 New Messages" class="badge bg-green">3</span>
  953. <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
  954. </button>
  955. <button type="button" class="btn btn-box-tool" data-toggle="tooltip" title="Contacts" data-widget="chat-pane-toggle">
  956. <i class="fa fa-comments"></i></button>
  957. <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
  958. </div>
  959. </div>
  960. <!-- /.box-header -->
  961. <div class="box-body">
  962. <!-- Conversations are loaded here -->
  963. <div class="direct-chat-messages">
  964. <!-- Message. Default to the left -->
  965. <div class="direct-chat-msg">
  966. <div class="direct-chat-info clearfix">
  967. <span class="direct-chat-name pull-left">Alexander Pierce</span>
  968. <span class="direct-chat-timestamp pull-right">23 Jan 2:00 pm</span>
  969. </div>
  970. <!-- /.direct-chat-info -->
  971. <img class="direct-chat-img" src="../dist/img/user1-128x128.jpg" alt="Message User Image"><!-- /.direct-chat-img -->
  972. <div class="direct-chat-text">
  973. Is this template really for free? That's unbelievable!
  974. </div>
  975. <!-- /.direct-chat-text -->
  976. </div>
  977. <!-- /.direct-chat-msg -->
  978. <!-- Message to the right -->
  979. <div class="direct-chat-msg right">
  980. <div class="direct-chat-info clearfix">
  981. <span class="direct-chat-name pull-right">Sarah Bullock</span>
  982. <span class="direct-chat-timestamp pull-left">23 Jan 2:05 pm</span>
  983. </div>
  984. <!-- /.direct-chat-info -->
  985. <img class="direct-chat-img" src="../dist/img/user3-128x128.jpg" alt="Message User Image"><!-- /.direct-chat-img -->
  986. <div class="direct-chat-text">
  987. You better believe it!
  988. </div>
  989. <!-- /.direct-chat-text -->
  990. </div>
  991. <!-- /.direct-chat-msg -->
  992. </div>
  993. <!--/.direct-chat-messages-->
  994. <!-- Contacts are loaded here -->
  995. <div class="direct-chat-contacts">
  996. <ul class="contacts-list">
  997. <li>
  998. <a href="#">
  999. <img class="contacts-list-img" src="../dist/img/user1-128x128.jpg" alt="User Image">
  1000. <div class="contacts-list-info">
  1001. <span class="contacts-list-name">
  1002. Count Dracula
  1003. <small class="contacts-list-date pull-right">2/28/2015</small>
  1004. </span>
  1005. <span class="contacts-list-msg">How have you been? I was...</span>
  1006. </div>
  1007. <!-- /.contacts-list-info -->
  1008. </a>
  1009. </li>
  1010. <!-- End Contact Item -->
  1011. </ul>
  1012. <!-- /.contatcts-list -->
  1013. </div>
  1014. <!-- /.direct-chat-pane -->
  1015. </div>
  1016. <!-- /.box-body -->
  1017. <div class="box-footer">
  1018. <form action="#" method="post">
  1019. <div class="input-group">
  1020. <input type="text" name="message" placeholder="Type Message ..." class="form-control">
  1021. <span class="input-group-btn">
  1022. <button type="submit" class="btn btn-success btn-flat">Send</button>
  1023. </span>
  1024. </div>
  1025. </form>
  1026. </div>
  1027. <!-- /.box-footer-->
  1028. </div>
  1029. <!--/.direct-chat -->
  1030. </div>
  1031. <!-- /.col -->
  1032. <div class="col-md-3">
  1033. <!-- DIRECT CHAT WARNING -->
  1034. <div class="box box-warning direct-chat direct-chat-warning">
  1035. <div class="box-header with-border">
  1036. <h3 class="box-title">Direct Chat</h3>
  1037. <div class="box-tools pull-right">
  1038. <span data-toggle="tooltip" title="3 New Messages" class="badge bg-yellow">3</span>
  1039. <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
  1040. </button>
  1041. <button type="button" class="btn btn-box-tool" data-toggle="tooltip" title="Contacts" data-widget="chat-pane-toggle">
  1042. <i class="fa fa-comments"></i></button>
  1043. <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
  1044. </div>
  1045. </div>
  1046. <!-- /.box-header -->
  1047. <div class="box-body">
  1048. <!-- Conversations are loaded here -->
  1049. <div class="direct-chat-messages">
  1050. <!-- Message. Default to the left -->
  1051. <div class="direct-chat-msg">
  1052. <div class="direct-chat-info clearfix">
  1053. <span class="direct-chat-name pull-left">Alexander Pierce</span>
  1054. <span class="direct-chat-timestamp pull-right">23 Jan 2:00 pm</span>
  1055. </div>
  1056. <!-- /.direct-chat-info -->
  1057. <img class="direct-chat-img" src="../dist/img/user1-128x128.jpg" alt="Message User Image"><!-- /.direct-chat-img -->
  1058. <div class="direct-chat-text">
  1059. Is this template really for free? That's unbelievable!
  1060. </div>
  1061. <!-- /.direct-chat-text -->
  1062. </div>
  1063. <!-- /.direct-chat-msg -->
  1064. <!-- Message to the right -->
  1065. <div class="direct-chat-msg right">
  1066. <div class="direct-chat-info clearfix">
  1067. <span class="direct-chat-name pull-right">Sarah Bullock</span>
  1068. <span class="direct-chat-timestamp pull-left">23 Jan 2:05 pm</span>
  1069. </div>
  1070. <!-- /.direct-chat-info -->
  1071. <img class="direct-chat-img" src="../dist/img/user3-128x128.jpg" alt="Message User Image"><!-- /.direct-chat-img -->
  1072. <div class="direct-chat-text">
  1073. You better believe it!
  1074. </div>
  1075. <!-- /.direct-chat-text -->
  1076. </div>
  1077. <!-- /.direct-chat-msg -->
  1078. </div>
  1079. <!--/.direct-chat-messages-->
  1080. <!-- Contacts are loaded here -->
  1081. <div class="direct-chat-contacts">
  1082. <ul class="contacts-list">
  1083. <li>
  1084. <a href="#">
  1085. <img class="contacts-list-img" src="../dist/img/user1-128x128.jpg" alt="User Image">
  1086. <div class="contacts-list-info">
  1087. <span class="contacts-list-name">
  1088. Count Dracula
  1089. <small class="contacts-list-date pull-right">2/28/2015</small>
  1090. </span>
  1091. <span class="contacts-list-msg">How have you been? I was...</span>
  1092. </div>
  1093. <!-- /.contacts-list-info -->
  1094. </a>
  1095. </li>
  1096. <!-- End Contact Item -->
  1097. </ul>
  1098. <!-- /.contatcts-list -->
  1099. </div>
  1100. <!-- /.direct-chat-pane -->
  1101. </div>
  1102. <!-- /.box-body -->
  1103. <div class="box-footer">
  1104. <form action="#" method="post">
  1105. <div class="input-group">
  1106. <input type="text" name="message" placeholder="Type Message ..." class="form-control">
  1107. <span class="input-group-btn">
  1108. <button type="submit" class="btn btn-warning btn-flat">Send</button>
  1109. </span>
  1110. </div>
  1111. </form>
  1112. </div>
  1113. <!-- /.box-footer-->
  1114. </div>
  1115. <!--/.direct-chat -->
  1116. </div>
  1117. <!-- /.col -->
  1118. <div class="col-md-3">
  1119. <!-- DIRECT CHAT DANGER -->
  1120. <div class="box box-danger direct-chat direct-chat-danger">
  1121. <div class="box-header with-border">
  1122. <h3 class="box-title">Direct Chat</h3>
  1123. <div class="box-tools pull-right">
  1124. <span data-toggle="tooltip" title="3 New Messages" class="badge bg-red">3</span>
  1125. <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
  1126. </button>
  1127. <button type="button" class="btn btn-box-tool" data-toggle="tooltip" title="Contacts" data-widget="chat-pane-toggle">
  1128. <i class="fa fa-comments"></i></button>
  1129. <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
  1130. </div>
  1131. </div>
  1132. <!-- /.box-header -->
  1133. <div class="box-body">
  1134. <!-- Conversations are loaded here -->
  1135. <div class="direct-chat-messages">
  1136. <!-- Message. Default to the left -->
  1137. <div class="direct-chat-msg">
  1138. <div class="direct-chat-info clearfix">
  1139. <span class="direct-chat-name pull-left">Alexander Pierce</span>
  1140. <span class="direct-chat-timestamp pull-right">23 Jan 2:00 pm</span>
  1141. </div>
  1142. <!-- /.direct-chat-info -->
  1143. <img class="direct-chat-img" src="../dist/img/user1-128x128.jpg" alt="Message User Image"><!-- /.direct-chat-img -->
  1144. <div class="direct-chat-text">
  1145. Is this template really for free? That's unbelievable!
  1146. </div>
  1147. <!-- /.direct-chat-text -->
  1148. </div>
  1149. <!-- /.direct-chat-msg -->
  1150. <!-- Message to the right -->
  1151. <div class="direct-chat-msg right">
  1152. <div class="direct-chat-info clearfix">
  1153. <span class="direct-chat-name pull-right">Sarah Bullock</span>
  1154. <span class="direct-chat-timestamp pull-left">23 Jan 2:05 pm</span>
  1155. </div>
  1156. <!-- /.direct-chat-info -->
  1157. <img class="direct-chat-img" src="../dist/img/user3-128x128.jpg" alt="Message User Image"><!-- /.direct-chat-img -->
  1158. <div class="direct-chat-text">
  1159. You better believe it!
  1160. </div>
  1161. <!-- /.direct-chat-text -->
  1162. </div>
  1163. <!-- /.direct-chat-msg -->
  1164. </div>
  1165. <!--/.direct-chat-messages-->
  1166. <!-- Contacts are loaded here -->
  1167. <div class="direct-chat-contacts">
  1168. <ul class="contacts-list">
  1169. <li>
  1170. <a href="#">
  1171. <img class="contacts-list-img" src="../dist/img/user1-128x128.jpg" alt="User Image">
  1172. <div class="contacts-list-info">
  1173. <span class="contacts-list-name">
  1174. Count Dracula
  1175. <small class="contacts-list-date pull-right">2/28/2015</small>
  1176. </span>
  1177. <span class="contacts-list-msg">How have you been? I was...</span>
  1178. </div>
  1179. <!-- /.contacts-list-info -->
  1180. </a>
  1181. </li>
  1182. <!-- End Contact Item -->
  1183. </ul>
  1184. <!-- /.contatcts-list -->
  1185. </div>
  1186. <!-- /.direct-chat-pane -->
  1187. </div>
  1188. <!-- /.box-body -->
  1189. <div class="box-footer">
  1190. <form action="#" method="post">
  1191. <div class="input-group">
  1192. <input type="text" name="message" placeholder="Type Message ..." class="form-control">
  1193. <span class="input-group-btn">
  1194. <button type="submit" class="btn btn-danger btn-flat">Send</button>
  1195. </span>
  1196. </div>
  1197. </form>
  1198. </div>
  1199. <!-- /.box-footer-->
  1200. </div>
  1201. <!--/.direct-chat -->
  1202. </div>
  1203. <!-- /.col -->
  1204. </div>
  1205. <!-- /.row -->
  1206. <h2 class="page-header">Social Widgets</h2>
  1207. <div class="row">
  1208. <div class="col-md-4">
  1209. <!-- Widget: user widget style 1 -->
  1210. <div class="box box-widget widget-user-2">
  1211. <!-- Add the bg color to the header using any of the bg-* classes -->
  1212. <div class="widget-user-header bg-yellow">
  1213. <div class="widget-user-image">
  1214. <img class="img-circle" src="../dist/img/user7-128x128.jpg" alt="User Avatar">
  1215. </div>
  1216. <!-- /.widget-user-image -->
  1217. <h3 class="widget-user-username">Nadia Carmichael</h3>
  1218. <h5 class="widget-user-desc">Lead Developer</h5>
  1219. </div>
  1220. <div class="box-footer no-padding">
  1221. <ul class="nav nav-stacked">
  1222. <li><a href="#">Projects <span class="pull-right badge bg-blue">31</span></a></li>
  1223. <li><a href="#">Tasks <span class="pull-right badge bg-aqua">5</span></a></li>
  1224. <li><a href="#">Completed Projects <span class="pull-right badge bg-green">12</span></a></li>
  1225. <li><a href="#">Followers <span class="pull-right badge bg-red">842</span></a></li>
  1226. </ul>
  1227. </div>
  1228. </div>
  1229. <!-- /.widget-user -->
  1230. </div>
  1231. <!-- /.col -->
  1232. <div class="col-md-4">
  1233. <!-- Widget: user widget style 1 -->
  1234. <div class="box box-widget widget-user">
  1235. <!-- Add the bg color to the header using any of the bg-* classes -->
  1236. <div class="widget-user-header bg-aqua-active">
  1237. <h3 class="widget-user-username">Alexander Pierce</h3>
  1238. <h5 class="widget-user-desc">Founder &amp; CEO</h5>
  1239. </div>
  1240. <div class="widget-user-image">
  1241. <img class="img-circle" src="../dist/img/user1-128x128.jpg" alt="User Avatar">
  1242. </div>
  1243. <div class="box-footer">
  1244. <div class="row">
  1245. <div class="col-sm-4 border-right">
  1246. <div class="description-block">
  1247. <h5 class="description-header">3,200</h5>
  1248. <span class="description-text">SALES</span>
  1249. </div>
  1250. <!-- /.description-block -->
  1251. </div>
  1252. <!-- /.col -->
  1253. <div class="col-sm-4 border-right">
  1254. <div class="description-block">
  1255. <h5 class="description-header">13,000</h5>
  1256. <span class="description-text">FOLLOWERS</span>
  1257. </div>
  1258. <!-- /.description-block -->
  1259. </div>
  1260. <!-- /.col -->
  1261. <div class="col-sm-4">
  1262. <div class="description-block">
  1263. <h5 class="description-header">35</h5>
  1264. <span class="description-text">PRODUCTS</span>
  1265. </div>
  1266. <!-- /.description-block -->
  1267. </div>
  1268. <!-- /.col -->
  1269. </div>
  1270. <!-- /.row -->
  1271. </div>
  1272. </div>
  1273. <!-- /.widget-user -->
  1274. </div>
  1275. <!-- /.col -->
  1276. <div class="col-md-4">
  1277. <!-- Widget: user widget style 1 -->
  1278. <div class="box box-widget widget-user">
  1279. <!-- Add the bg color to the header using any of the bg-* classes -->
  1280. <div class="widget-user-header bg-black" style="background: url('../dist/img/photo1.png') center center;">
  1281. <h3 class="widget-user-username">Elizabeth Pierce</h3>
  1282. <h5 class="widget-user-desc">Web Designer</h5>
  1283. </div>
  1284. <div class="widget-user-image">
  1285. <img class="img-circle" src="../dist/img/user3-128x128.jpg" alt="User Avatar">
  1286. </div>
  1287. <div class="box-footer">
  1288. <div class="row">
  1289. <div class="col-sm-4 border-right">
  1290. <div class="description-block">
  1291. <h5 class="description-header">3,200</h5>
  1292. <span class="description-text">SALES</span>
  1293. </div>
  1294. <!-- /.description-block -->
  1295. </div>
  1296. <!-- /.col -->
  1297. <div class="col-sm-4 border-right">
  1298. <div class="description-block">
  1299. <h5 class="description-header">13,000</h5>
  1300. <span class="description-text">FOLLOWERS</span>
  1301. </div>
  1302. <!-- /.description-block -->
  1303. </div>
  1304. <!-- /.col -->
  1305. <div class="col-sm-4">
  1306. <div class="description-block">
  1307. <h5 class="description-header">35</h5>
  1308. <span class="description-text">PRODUCTS</span>
  1309. </div>
  1310. <!-- /.description-block -->
  1311. </div>
  1312. <!-- /.col -->
  1313. </div>
  1314. <!-- /.row -->
  1315. </div>
  1316. </div>
  1317. <!-- /.widget-user -->
  1318. </div>
  1319. <!-- /.col -->
  1320. </div>
  1321. <!-- /.row -->
  1322. <div class="row">
  1323. <div class="col-md-6">
  1324. <!-- Box Comment -->
  1325. <div class="box box-widget">
  1326. <div class="box-header with-border">
  1327. <div class="user-block">
  1328. <img class="img-circle" src="../dist/img/user1-128x128.jpg" alt="User Image">
  1329. <span class="username"><a href="#">Jonathan Burke Jr.</a></span>
  1330. <span class="description">Shared publicly - 7:30 PM Today</span>
  1331. </div>
  1332. <!-- /.user-block -->
  1333. <div class="box-tools">
  1334. <button type="button" class="btn btn-box-tool" data-toggle="tooltip" title="Mark as read">
  1335. <i class="fa fa-circle-o"></i></button>
  1336. <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
  1337. </button>
  1338. <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
  1339. </div>
  1340. <!-- /.box-tools -->
  1341. </div>
  1342. <!-- /.box-header -->
  1343. <div class="box-body">
  1344. <img class="img-responsive pad" src="../dist/img/photo2.png" alt="Photo">
  1345. <p>I took this photo this morning. What do you guys think?</p>
  1346. <button type="button" class="btn btn-default btn-xs"><i class="fa fa-share"></i> Share</button>
  1347. <button type="button" class="btn btn-default btn-xs"><i class="fa fa-thumbs-o-up"></i> Like</button>
  1348. <span class="pull-right text-muted">127 likes - 3 comments</span>
  1349. </div>
  1350. <!-- /.box-body -->
  1351. <div class="box-footer box-comments">
  1352. <div class="box-comment">
  1353. <!-- User image -->
  1354. <img class="img-circle img-sm" src="../dist/img/user3-128x128.jpg" alt="User Image">
  1355. <div class="comment-text">
  1356. <span class="username">
  1357. Maria Gonzales
  1358. <span class="text-muted pull-right">8:03 PM Today</span>
  1359. </span><!-- /.username -->
  1360. It is a long established fact that a reader will be distracted
  1361. by the readable content of a page when looking at its layout.
  1362. </div>
  1363. <!-- /.comment-text -->
  1364. </div>
  1365. <!-- /.box-comment -->
  1366. <div class="box-comment">
  1367. <!-- User image -->
  1368. <img class="img-circle img-sm" src="../dist/img/user4-128x128.jpg" alt="User Image">
  1369. <div class="comment-text">
  1370. <span class="username">
  1371. Luna Stark
  1372. <span class="text-muted pull-right">8:03 PM Today</span>
  1373. </span><!-- /.username -->
  1374. It is a long established fact that a reader will be distracted
  1375. by the readable content of a page when looking at its layout.
  1376. </div>
  1377. <!-- /.comment-text -->
  1378. </div>
  1379. <!-- /.box-comment -->
  1380. </div>
  1381. <!-- /.box-footer -->
  1382. <div class="box-footer">
  1383. <form action="#" method="post">
  1384. <img class="img-responsive img-circle img-sm" src="../dist/img/user4-128x128.jpg" alt="Alt Text">
  1385. <!-- .img-push is used to add margin to elements next to floating images -->
  1386. <div class="img-push">
  1387. <input type="text" class="form-control input-sm" placeholder="Press enter to post comment">
  1388. </div>
  1389. </form>
  1390. </div>
  1391. <!-- /.box-footer -->
  1392. </div>
  1393. <!-- /.box -->
  1394. </div>
  1395. <!-- /.col -->
  1396. <div class="col-md-6">
  1397. <!-- Box Comment -->
  1398. <div class="box box-widget">
  1399. <div class="box-header with-border">
  1400. <div class="user-block">
  1401. <img class="img-circle" src="../dist/img/user1-128x128.jpg" alt="User Image">
  1402. <span class="username"><a href="#">Jonathan Burke Jr.</a></span>
  1403. <span class="description">Shared publicly - 7:30 PM Today</span>
  1404. </div>
  1405. <!-- /.user-block -->
  1406. <div class="box-tools">
  1407. <button type="button" class="btn btn-box-tool" data-toggle="tooltip" title="Mark as read">
  1408. <i class="fa fa-circle-o"></i></button>
  1409. <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
  1410. </button>
  1411. <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
  1412. </div>
  1413. <!-- /.box-tools -->
  1414. </div>
  1415. <!-- /.box-header -->
  1416. <div class="box-body">
  1417. <!-- post text -->
  1418. <p>Far far away, behind the word mountains, far from the
  1419. countries Vokalia and Consonantia, there live the blind
  1420. texts. Separated they live in Bookmarksgrove right at</p>
  1421. <p>the coast of the Semantics, a large language ocean.
  1422. A small river named Duden flows by their place and supplies
  1423. it with the necessary regelialia. It is a paradisematic
  1424. country, in which roasted parts of sentences fly into
  1425. your mouth.</p>
  1426. <!-- Attachment -->
  1427. <div class="attachment-block clearfix">
  1428. <img class="attachment-img" src="../dist/img/photo1.png" alt="Attachment Image">
  1429. <div class="attachment-pushed">
  1430. <h4 class="attachment-heading"><a href="http://www.lipsum.com/">Lorem ipsum text generator</a></h4>
  1431. <div class="attachment-text">
  1432. Description about the attachment can be placed here.
  1433. Lorem Ipsum is simply dummy text of the printing and typesetting industry... <a href="#">more</a>
  1434. </div>
  1435. <!-- /.attachment-text -->
  1436. </div>
  1437. <!-- /.attachment-pushed -->
  1438. </div>
  1439. <!-- /.attachment-block -->
  1440. <!-- Social sharing buttons -->
  1441. <button type="button" class="btn btn-default btn-xs"><i class="fa fa-share"></i> Share</button>
  1442. <button type="button" class="btn btn-default btn-xs"><i class="fa fa-thumbs-o-up"></i> Like</button>
  1443. <span class="pull-right text-muted">45 likes - 2 comments</span>
  1444. </div>
  1445. <!-- /.box-body -->
  1446. <div class="box-footer box-comments">
  1447. <div class="box-comment">
  1448. <!-- User image -->
  1449. <img class="img-circle img-sm" src="../dist/img/user3-128x128.jpg" alt="User Image">
  1450. <div class="comment-text">
  1451. <span class="username">
  1452. Maria Gonzales
  1453. <span class="text-muted pull-right">8:03 PM Today</span>
  1454. </span><!-- /.username -->
  1455. It is a long established fact that a reader will be distracted
  1456. by the readable content of a page when looking at its layout.
  1457. </div>
  1458. <!-- /.comment-text -->
  1459. </div>
  1460. <!-- /.box-comment -->
  1461. <div class="box-comment">
  1462. <!-- User image -->
  1463. <img class="img-circle img-sm" src="../dist/img/user5-128x128.jpg" alt="User Image">
  1464. <div class="comment-text">
  1465. <span class="username">
  1466. Nora Havisham
  1467. <span class="text-muted pull-right">8:03 PM Today</span>
  1468. </span><!-- /.username -->
  1469. The point of using Lorem Ipsum is that it has a more-or-less
  1470. normal distribution of letters, as opposed to using
  1471. 'Content here, content here', making it look like readable English.
  1472. </div>
  1473. <!-- /.comment-text -->
  1474. </div>
  1475. <!-- /.box-comment -->
  1476. </div>
  1477. <!-- /.box-footer -->
  1478. <div class="box-footer">
  1479. <form action="#" method="post">
  1480. <img class="img-responsive img-circle img-sm" src="../dist/img/user4-128x128.jpg" alt="Alt Text">
  1481. <!-- .img-push is used to add margin to elements next to floating images -->
  1482. <div class="img-push">
  1483. <input type="text" class="form-control input-sm" placeholder="Press enter to post comment">
  1484. </div>
  1485. </form>
  1486. </div>
  1487. <!-- /.box-footer -->
  1488. </div>
  1489. <!-- /.box -->
  1490. </div>
  1491. <!-- /.col -->
  1492. </div>
  1493. <!-- /.row -->
  1494. </section>
  1495. <!-- /.content -->
  1496. </div>
  1497. <!-- /.content-wrapper -->
  1498. <footer class="main-footer">
  1499. <div class="pull-right hidden-xs">
  1500. <b>Version</b> 2.3.7
  1501. </div>
  1502. <strong>Copyright &copy; 2014-2016 <a href="http://almsaeedstudio.com">Almsaeed Studio</a>.</strong> All rights
  1503. reserved.
  1504. </footer>
  1505. <!-- Control Sidebar -->
  1506. <aside class="control-sidebar control-sidebar-dark">
  1507. <!-- Create the tabs -->
  1508. <ul class="nav nav-tabs nav-justified control-sidebar-tabs">
  1509. <li><a href="#control-sidebar-home-tab" data-toggle="tab"><i class="fa fa-home"></i></a></li>
  1510. <li><a href="#control-sidebar-settings-tab" data-toggle="tab"><i class="fa fa-gears"></i></a></li>
  1511. </ul>
  1512. <!-- Tab panes -->
  1513. <div class="tab-content">
  1514. <!-- Home tab content -->
  1515. <div class="tab-pane" id="control-sidebar-home-tab">
  1516. <h3 class="control-sidebar-heading">Recent Activity</h3>
  1517. <ul class="control-sidebar-menu">
  1518. <li>
  1519. <a href="javascript:void(0)">
  1520. <i class="menu-icon fa fa-birthday-cake bg-red"></i>
  1521. <div class="menu-info">
  1522. <h4 class="control-sidebar-subheading">Langdon's Birthday</h4>
  1523. <p>Will be 23 on April 24th</p>
  1524. </div>
  1525. </a>
  1526. </li>
  1527. <li>
  1528. <a href="javascript:void(0)">
  1529. <i class="menu-icon fa fa-user bg-yellow"></i>
  1530. <div class="menu-info">
  1531. <h4 class="control-sidebar-subheading">Frodo Updated His Profile</h4>
  1532. <p>New phone +1(800)555-1234</p>
  1533. </div>
  1534. </a>
  1535. </li>
  1536. <li>
  1537. <a href="javascript:void(0)">
  1538. <i class="menu-icon fa fa-envelope-o bg-light-blue"></i>
  1539. <div class="menu-info">
  1540. <h4 class="control-sidebar-subheading">Nora Joined Mailing List</h4>
  1541. <p>nora@example.com</p>
  1542. </div>
  1543. </a>
  1544. </li>
  1545. <li>
  1546. <a href="javascript:void(0)">
  1547. <i class="menu-icon fa fa-file-code-o bg-green"></i>
  1548. <div class="menu-info">
  1549. <h4 class="control-sidebar-subheading">Cron Job 254 Executed</h4>
  1550. <p>Execution time 5 seconds</p>
  1551. </div>
  1552. </a>
  1553. </li>
  1554. </ul>
  1555. <!-- /.control-sidebar-menu -->
  1556. <h3 class="control-sidebar-heading">Tasks Progress</h3>
  1557. <ul class="control-sidebar-menu">
  1558. <li>
  1559. <a href="javascript:void(0)">
  1560. <h4 class="control-sidebar-subheading">
  1561. Custom Template Design
  1562. <span class="label label-danger pull-right">70%</span>
  1563. </h4>
  1564. <div class="progress progress-xxs">
  1565. <div class="progress-bar progress-bar-danger" style="width: 70%"></div>
  1566. </div>
  1567. </a>
  1568. </li>
  1569. <li>
  1570. <a href="javascript:void(0)">
  1571. <h4 class="control-sidebar-subheading">
  1572. Update Resume
  1573. <span class="label label-success pull-right">95%</span>
  1574. </h4>
  1575. <div class="progress progress-xxs">
  1576. <div class="progress-bar progress-bar-success" style="width: 95%"></div>
  1577. </div>
  1578. </a>
  1579. </li>
  1580. <li>
  1581. <a href="javascript:void(0)">
  1582. <h4 class="control-sidebar-subheading">
  1583. Laravel Integration
  1584. <span class="label label-warning pull-right">50%</span>
  1585. </h4>
  1586. <div class="progress progress-xxs">
  1587. <div class="progress-bar progress-bar-warning" style="width: 50%"></div>
  1588. </div>
  1589. </a>
  1590. </li>
  1591. <li>
  1592. <a href="javascript:void(0)">
  1593. <h4 class="control-sidebar-subheading">
  1594. Back End Framework
  1595. <span class="label label-primary pull-right">68%</span>
  1596. </h4>
  1597. <div class="progress progress-xxs">
  1598. <div class="progress-bar progress-bar-primary" style="width: 68%"></div>
  1599. </div>
  1600. </a>
  1601. </li>
  1602. </ul>
  1603. <!-- /.control-sidebar-menu -->
  1604. </div>
  1605. <!-- /.tab-pane -->
  1606. <!-- Stats tab content -->
  1607. <div class="tab-pane" id="control-sidebar-stats-tab">Stats Tab Content</div>
  1608. <!-- /.tab-pane -->
  1609. <!-- Settings tab content -->
  1610. <div class="tab-pane" id="control-sidebar-settings-tab">
  1611. <form method="post">
  1612. <h3 class="control-sidebar-heading">General Settings</h3>
  1613. <div class="form-group">
  1614. <label class="control-sidebar-subheading">
  1615. Report panel usage
  1616. <input type="checkbox" class="pull-right" checked>
  1617. </label>
  1618. <p>
  1619. Some information about this general settings option
  1620. </p>
  1621. </div>
  1622. <!-- /.form-group -->
  1623. <div class="form-group">
  1624. <label class="control-sidebar-subheading">
  1625. Allow mail redirect
  1626. <input type="checkbox" class="pull-right" checked>
  1627. </label>
  1628. <p>
  1629. Other sets of options are available
  1630. </p>
  1631. </div>
  1632. <!-- /.form-group -->
  1633. <div class="form-group">
  1634. <label class="control-sidebar-subheading">
  1635. Expose author name in posts
  1636. <input type="checkbox" class="pull-right" checked>
  1637. </label>
  1638. <p>
  1639. Allow the user to show his name in blog posts
  1640. </p>
  1641. </div>
  1642. <!-- /.form-group -->
  1643. <h3 class="control-sidebar-heading">Chat Settings</h3>
  1644. <div class="form-group">
  1645. <label class="control-sidebar-subheading">
  1646. Show me as online
  1647. <input type="checkbox" class="pull-right" checked>
  1648. </label>
  1649. </div>
  1650. <!-- /.form-group -->
  1651. <div class="form-group">
  1652. <label class="control-sidebar-subheading">
  1653. Turn off notifications
  1654. <input type="checkbox" class="pull-right">
  1655. </label>
  1656. </div>
  1657. <!-- /.form-group -->
  1658. <div class="form-group">
  1659. <label class="control-sidebar-subheading">
  1660. Delete chat history
  1661. <a href="javascript:void(0)" class="text-red pull-right"><i class="fa fa-trash-o"></i></a>
  1662. </label>
  1663. </div>
  1664. <!-- /.form-group -->
  1665. </form>
  1666. </div>
  1667. <!-- /.tab-pane -->
  1668. </div>
  1669. </aside>
  1670. <!-- /.control-sidebar -->
  1671. <!-- Add the sidebar's background. This div must be placed
  1672. immediately after the control sidebar -->
  1673. <div class="control-sidebar-bg"></div>
  1674. </div>
  1675. <!-- ./wrapper -->
  1676. <!-- jQuery 2.2.3 -->
  1677. <script src="../plugins/jQuery/jquery-2.2.3.min.js"></script>
  1678. <!-- Bootstrap 3.3.6 -->
  1679. <script src="../bootstrap/js/bootstrap.min.js"></script>
  1680. <!-- Slimscroll -->
  1681. <script src="../plugins/slimScroll/jquery.slimscroll.min.js"></script>
  1682. <!-- FastClick -->
  1683. <script src="../plugins/fastclick/fastclick.js"></script>
  1684. <!-- AdminLTE App -->
  1685. <script src="../dist/js/app.min.js"></script>
  1686. <!-- AdminLTE for demo purposes -->
  1687. <script src="../dist/js/demo.js"></script>
  1688. </body>
  1689. </html>