widgets.html 72 KB

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