layout-boxed.html 144 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694
  1. <!doctype html>
  2. <!--
  3. * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
  4. * @version 1.0.0-beta17
  5. * @link https://tabler.io
  6. * Copyright 2018-2023 The Tabler Authors
  7. * Copyright 2018-2023 codecalm.net Paweł Kuna
  8. * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
  9. -->
  10. <html lang="en">
  11. <head>
  12. <meta charset="utf-8"/>
  13. <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
  14. <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
  15. <title>Dashboard - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
  16. <!-- CSS files -->
  17. <link href="./dist/css/tabler.min.css?1674944402" rel="stylesheet"/>
  18. <link href="./dist/css/tabler-flags.min.css?1674944402" rel="stylesheet"/>
  19. <link href="./dist/css/tabler-payments.min.css?1674944402" rel="stylesheet"/>
  20. <link href="./dist/css/tabler-vendors.min.css?1674944402" rel="stylesheet"/>
  21. <link href="./dist/css/demo.min.css?1674944402" rel="stylesheet"/>
  22. <style>
  23. @import url('https://rsms.me/inter/inter.css');
  24. :root {
  25. --tblr-font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  26. }
  27. body {
  28. font-feature-settings: "cv03", "cv04", "cv11";
  29. }
  30. </style>
  31. </head>
  32. <body class=" layout-boxed">
  33. <script src="./dist/js/demo-theme.min.js?1674944402"></script>
  34. <div class="page">
  35. <!-- Navbar -->
  36. <header class="navbar navbar-expand-md navbar-light d-print-none">
  37. <div class="container-xl">
  38. <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar-menu" aria-controls="navbar-menu" aria-expanded="false" aria-label="Toggle navigation">
  39. <span class="navbar-toggler-icon"></span>
  40. </button>
  41. <h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
  42. <a href=".">
  43. <img src="./static/logo.svg" width="110" height="32" alt="Tabler" class="navbar-brand-image">
  44. </a>
  45. </h1>
  46. <div class="navbar-nav flex-row order-md-last">
  47. <div class="nav-item d-none d-md-flex me-3">
  48. <div class="btn-list">
  49. <a href="https://github.com/tabler/tabler" class="btn" target="_blank" rel="noreferrer">
  50. <!-- Download SVG icon from http://tabler-icons.io/i/brand-github -->
  51. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5" /></svg>
  52. Source code
  53. </a>
  54. <a href="https://github.com/sponsors/codecalm" class="btn" target="_blank" rel="noreferrer">
  55. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  56. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-pink" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  57. Sponsor
  58. </a>
  59. </div>
  60. </div>
  61. <div class="d-none d-md-flex">
  62. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  63. data-bs-placement="bottom">
  64. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  65. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" /></svg>
  66. </a>
  67. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  68. data-bs-placement="bottom">
  69. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  70. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" /><path d="M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7" /></svg>
  71. </a>
  72. <div class="nav-item dropdown d-none d-md-flex me-3">
  73. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  74. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  75. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6" /><path d="M9 17v1a3 3 0 0 0 6 0v-1" /></svg>
  76. <span class="badge bg-red"></span>
  77. </a>
  78. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  79. <div class="card">
  80. <div class="card-header">
  81. <h3 class="card-title">Last updates</h3>
  82. </div>
  83. <div class="list-group list-group-flush list-group-hoverable">
  84. <div class="list-group-item">
  85. <div class="row align-items-center">
  86. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  87. <div class="col text-truncate">
  88. <a href="#" class="text-body d-block">Example 1</a>
  89. <div class="d-block text-muted text-truncate mt-n1">
  90. Change deprecated html tags to text decoration classes (#29604)
  91. </div>
  92. </div>
  93. <div class="col-auto">
  94. <a href="#" class="list-group-item-actions">
  95. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  96. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  97. </a>
  98. </div>
  99. </div>
  100. </div>
  101. <div class="list-group-item">
  102. <div class="row align-items-center">
  103. <div class="col-auto"><span class="status-dot d-block"></span></div>
  104. <div class="col text-truncate">
  105. <a href="#" class="text-body d-block">Example 2</a>
  106. <div class="d-block text-muted text-truncate mt-n1">
  107. justify-content:between ⇒ justify-content:space-between (#29734)
  108. </div>
  109. </div>
  110. <div class="col-auto">
  111. <a href="#" class="list-group-item-actions show">
  112. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  113. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-yellow" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  114. </a>
  115. </div>
  116. </div>
  117. </div>
  118. <div class="list-group-item">
  119. <div class="row align-items-center">
  120. <div class="col-auto"><span class="status-dot d-block"></span></div>
  121. <div class="col text-truncate">
  122. <a href="#" class="text-body d-block">Example 3</a>
  123. <div class="d-block text-muted text-truncate mt-n1">
  124. Update change-version.js (#29736)
  125. </div>
  126. </div>
  127. <div class="col-auto">
  128. <a href="#" class="list-group-item-actions">
  129. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  130. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  131. </a>
  132. </div>
  133. </div>
  134. </div>
  135. <div class="list-group-item">
  136. <div class="row align-items-center">
  137. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  138. <div class="col text-truncate">
  139. <a href="#" class="text-body d-block">Example 4</a>
  140. <div class="d-block text-muted text-truncate mt-n1">
  141. Regenerate package-lock.json (#29730)
  142. </div>
  143. </div>
  144. <div class="col-auto">
  145. <a href="#" class="list-group-item-actions">
  146. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  147. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  148. </a>
  149. </div>
  150. </div>
  151. </div>
  152. </div>
  153. </div>
  154. </div>
  155. </div>
  156. </div>
  157. <div class="nav-item dropdown">
  158. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  159. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  160. <div class="d-none d-xl-block ps-2">
  161. <div>Paweł Kuna</div>
  162. <div class="mt-1 small text-muted">UI Designer</div>
  163. </div>
  164. </a>
  165. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
  166. <a href="#" class="dropdown-item">Status</a>
  167. <a href="./profile.html" class="dropdown-item">Profile</a>
  168. <a href="#" class="dropdown-item">Feedback</a>
  169. <div class="dropdown-divider"></div>
  170. <a href="./settings.html" class="dropdown-item">Settings</a>
  171. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  172. </div>
  173. </div>
  174. </div>
  175. </div>
  176. </header>
  177. <header class="navbar-expand-md">
  178. <div class="collapse navbar-collapse" id="navbar-menu">
  179. <div class="navbar navbar-light">
  180. <div class="container-xl">
  181. <ul class="navbar-nav">
  182. <li class="nav-item">
  183. <a class="nav-link" href="./" >
  184. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/home -->
  185. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l-2 0l9 -9l9 9l-2 0" /><path d="M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7" /><path d="M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6" /></svg>
  186. </span>
  187. <span class="nav-link-title">
  188. Home
  189. </span>
  190. </a>
  191. </li>
  192. <li class="nav-item dropdown">
  193. <a class="nav-link dropdown-toggle" href="#navbar-base" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  194. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/package -->
  195. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5" /><path d="M12 12l8 -4.5" /><path d="M12 12l0 9" /><path d="M12 12l-8 -4.5" /><path d="M16 5.25l-8 4.5" /></svg>
  196. </span>
  197. <span class="nav-link-title">
  198. Interface
  199. </span>
  200. </a>
  201. <div class="dropdown-menu">
  202. <div class="dropdown-menu-columns">
  203. <div class="dropdown-menu-column">
  204. <a class="dropdown-item" href="./empty.html">
  205. Empty page
  206. </a>
  207. <a class="dropdown-item" href="./accordion.html">
  208. Accordion
  209. </a>
  210. <a class="dropdown-item" href="./blank.html">
  211. Blank page
  212. </a>
  213. <a class="dropdown-item" href="./badges.html">
  214. Badges
  215. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  216. </a>
  217. <a class="dropdown-item" href="./buttons.html">
  218. Buttons
  219. </a>
  220. <div class="dropend">
  221. <a class="dropdown-item dropdown-toggle" href="#sidebar-cards" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  222. Cards
  223. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  224. </a>
  225. <div class="dropdown-menu">
  226. <a href="./cards.html" class="dropdown-item">
  227. Sample cards
  228. </a>
  229. <a href="./card-actions.html" class="dropdown-item">
  230. Card actions
  231. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  232. </a>
  233. <a href="./cards-masonry.html" class="dropdown-item">
  234. Cards Masonry
  235. </a>
  236. </div>
  237. </div>
  238. <a class="dropdown-item" href="./colors.html">
  239. Colors
  240. </a>
  241. <a class="dropdown-item" href="./datagrid.html">
  242. Data grid
  243. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  244. </a>
  245. <a class="dropdown-item" href="./datatables.html">
  246. Datatables
  247. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  248. </a>
  249. <a class="dropdown-item" href="./dropdowns.html">
  250. Dropdowns
  251. </a>
  252. <a class="dropdown-item" href="./modals.html">
  253. Modals
  254. </a>
  255. <a class="dropdown-item" href="./maps.html">
  256. Maps
  257. </a>
  258. <a class="dropdown-item" href="./map-fullsize.html">
  259. Map fullsize
  260. </a>
  261. <a class="dropdown-item" href="./maps-vector.html">
  262. Vector maps
  263. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  264. </a>
  265. <a class="dropdown-item" href="./navigation.html">
  266. Navigation
  267. </a>
  268. <a class="dropdown-item" href="./charts.html">
  269. Charts
  270. </a>
  271. </div>
  272. <div class="dropdown-menu-column">
  273. <a class="dropdown-item" href="./pagination.html">
  274. <!-- Download SVG icon from http://tabler-icons.io/i/pie-chart -->
  275. Pagination
  276. </a>
  277. <a class="dropdown-item" href="./placeholder.html">
  278. Placeholder
  279. </a>
  280. <a class="dropdown-item" href="./steps.html">
  281. Steps
  282. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  283. </a>
  284. <a class="dropdown-item" href="./tabs.html">
  285. Tabs
  286. </a>
  287. <a class="dropdown-item" href="./tables.html">
  288. Tables
  289. </a>
  290. <a class="dropdown-item" href="./carousel.html">
  291. Carousel
  292. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  293. </a>
  294. <a class="dropdown-item" href="./lists.html">
  295. Lists
  296. </a>
  297. <a class="dropdown-item" href="./typography.html">
  298. Typography
  299. </a>
  300. <a class="dropdown-item" href="./offcanvas.html">
  301. Offcanvas
  302. </a>
  303. <a class="dropdown-item" href="./markdown.html">
  304. Markdown
  305. </a>
  306. <a class="dropdown-item" href="./dropzone.html">
  307. Dropzone
  308. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  309. </a>
  310. <a class="dropdown-item" href="./lightbox.html">
  311. Lightbox
  312. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  313. </a>
  314. <a class="dropdown-item" href="./tinymce.html">
  315. TinyMCE
  316. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  317. </a>
  318. <a class="dropdown-item" href="./inline-player.html">
  319. Inline player
  320. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  321. </a>
  322. <div class="dropend">
  323. <a class="dropdown-item dropdown-toggle" href="#sidebar-authentication" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  324. Authentication
  325. </a>
  326. <div class="dropdown-menu">
  327. <a href="./sign-in.html" class="dropdown-item">
  328. Sign in
  329. </a>
  330. <a href="./sign-in-link.html" class="dropdown-item">
  331. Sign in link
  332. </a>
  333. <a href="./sign-in-illustration.html" class="dropdown-item">
  334. Sign in with illustration
  335. </a>
  336. <a href="./sign-in-cover.html" class="dropdown-item">
  337. Sign in with cover
  338. </a>
  339. <a href="./sign-up.html" class="dropdown-item">
  340. Sign up
  341. </a>
  342. <a href="./forgot-password.html" class="dropdown-item">
  343. Forgot password
  344. </a>
  345. <a href="./terms-of-service.html" class="dropdown-item">
  346. Terms of service
  347. </a>
  348. <a href="./auth-lock.html" class="dropdown-item">
  349. Lock screen
  350. </a>
  351. </div>
  352. </div>
  353. <div class="dropend">
  354. <a class="dropdown-item dropdown-toggle" href="#sidebar-error" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  355. <!-- Download SVG icon from http://tabler-icons.io/i/file-minus -->
  356. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-inline me-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M14 3v4a1 1 0 0 0 1 1h4" /><path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" /><path d="M9 14l6 0" /></svg>
  357. Error pages
  358. </a>
  359. <div class="dropdown-menu">
  360. <a href="./error-404.html" class="dropdown-item">
  361. 404 page
  362. </a>
  363. <a href="./error-500.html" class="dropdown-item">
  364. 500 page
  365. </a>
  366. <a href="./error-maintenance.html" class="dropdown-item">
  367. Maintenance page
  368. </a>
  369. </div>
  370. </div>
  371. </div>
  372. </div>
  373. </div>
  374. </li>
  375. <li class="nav-item">
  376. <a class="nav-link" href="./form-elements.html" >
  377. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/checkbox -->
  378. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 11l3 3l8 -8" /><path d="M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9" /></svg>
  379. </span>
  380. <span class="nav-link-title">
  381. Form elements
  382. </span>
  383. </a>
  384. </li>
  385. <li class="nav-item dropdown">
  386. <a class="nav-link dropdown-toggle" href="#navbar-extra" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  387. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  388. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  389. </span>
  390. <span class="nav-link-title">
  391. Extra
  392. </span>
  393. </a>
  394. <div class="dropdown-menu">
  395. <div class="dropdown-menu-columns">
  396. <div class="dropdown-menu-column">
  397. <a class="dropdown-item" href="./activity.html">
  398. Activity
  399. </a>
  400. <a class="dropdown-item" href="./gallery.html">
  401. Gallery
  402. </a>
  403. <a class="dropdown-item" href="./invoice.html">
  404. Invoice
  405. </a>
  406. <a class="dropdown-item" href="./search-results.html">
  407. Search results
  408. </a>
  409. <a class="dropdown-item" href="./pricing.html">
  410. Pricing cards
  411. </a>
  412. <a class="dropdown-item" href="./pricing-table.html">
  413. Pricing table
  414. </a>
  415. <a class="dropdown-item" href="./faq.html">
  416. FAQ
  417. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  418. </a>
  419. <a class="dropdown-item" href="./users.html">
  420. Users
  421. </a>
  422. <a class="dropdown-item" href="./license.html">
  423. License
  424. </a>
  425. <a class="dropdown-item" href="./logs.html">
  426. Logs
  427. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  428. </a>
  429. </div>
  430. <div class="dropdown-menu-column">
  431. <a class="dropdown-item" href="./music.html">
  432. Music
  433. </a>
  434. <a class="dropdown-item" href="./photogrid.html">
  435. Photogrid
  436. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  437. </a>
  438. <a class="dropdown-item" href="./tasks.html">
  439. Tasks
  440. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  441. </a>
  442. <a class="dropdown-item" href="./uptime.html">
  443. Uptime monitor
  444. </a>
  445. <a class="dropdown-item" href="./widgets.html">
  446. Widgets
  447. </a>
  448. <a class="dropdown-item" href="./wizard.html">
  449. Wizard
  450. </a>
  451. <a class="dropdown-item" href="./settings.html">
  452. Settings
  453. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  454. </a>
  455. <a class="dropdown-item" href="./trial-ended.html">
  456. Trial ended
  457. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  458. </a>
  459. <a class="dropdown-item" href="./job-listing.html">
  460. Job listing
  461. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  462. </a>
  463. <a class="dropdown-item" href="./page-loader.html">
  464. Page loader
  465. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  466. </a>
  467. </div>
  468. </div>
  469. </div>
  470. </li>
  471. <li class="nav-item active dropdown">
  472. <a class="nav-link dropdown-toggle" href="#navbar-layout" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  473. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/layout-2 -->
  474. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /><path d="M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /><path d="M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /><path d="M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /></svg>
  475. </span>
  476. <span class="nav-link-title">
  477. Layout
  478. </span>
  479. </a>
  480. <div class="dropdown-menu">
  481. <div class="dropdown-menu-columns">
  482. <div class="dropdown-menu-column">
  483. <a class="dropdown-item" href="./layout-horizontal.html">
  484. Horizontal
  485. </a>
  486. <a class="dropdown-item active" href="./layout-boxed.html">
  487. Boxed
  488. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  489. </a>
  490. <a class="dropdown-item" href="./layout-vertical.html">
  491. Vertical
  492. </a>
  493. <a class="dropdown-item" href="./layout-vertical-transparent.html">
  494. Vertical transparent
  495. </a>
  496. <a class="dropdown-item" href="./layout-vertical-right.html">
  497. Right vertical
  498. </a>
  499. <a class="dropdown-item" href="./layout-condensed.html">
  500. Condensed
  501. </a>
  502. <a class="dropdown-item" href="./layout-combo.html">
  503. Combined
  504. </a>
  505. </div>
  506. <div class="dropdown-menu-column">
  507. <a class="dropdown-item" href="./layout-navbar-dark.html">
  508. Navbar dark
  509. </a>
  510. <a class="dropdown-item" href="./layout-navbar-sticky.html">
  511. Navbar sticky
  512. </a>
  513. <a class="dropdown-item" href="./layout-navbar-overlap.html">
  514. Navbar overlap
  515. </a>
  516. <a class="dropdown-item" href="./layout-rtl.html">
  517. RTL mode
  518. </a>
  519. <a class="dropdown-item" href="./layout-fluid.html">
  520. Fluid
  521. </a>
  522. <a class="dropdown-item" href="./layout-fluid-vertical.html">
  523. Fluid vertical
  524. </a>
  525. </div>
  526. </div>
  527. </div>
  528. </li>
  529. <li class="nav-item">
  530. <a class="nav-link" href="./icons.html" >
  531. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/ghost -->
  532. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7" /><path d="M10 10l.01 0" /><path d="M14 10l.01 0" /><path d="M10 14a3.5 3.5 0 0 0 4 0" /></svg>
  533. </span>
  534. <span class="nav-link-title">
  535. 3222 icons
  536. </span>
  537. </a>
  538. </li>
  539. <li class="nav-item dropdown">
  540. <a class="nav-link dropdown-toggle" href="#navbar-help" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  541. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/lifebuoy -->
  542. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" /><path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" /><path d="M15 15l3.35 3.35" /><path d="M9 15l-3.35 3.35" /><path d="M5.65 5.65l3.35 3.35" /><path d="M18.35 5.65l-3.35 3.35" /></svg>
  543. </span>
  544. <span class="nav-link-title">
  545. Help
  546. </span>
  547. </a>
  548. <div class="dropdown-menu">
  549. <a class="dropdown-item" href="./docs/">
  550. Documentation
  551. </a>
  552. <a class="dropdown-item" href="./changelog.html">
  553. Changelog
  554. </a>
  555. <a class="dropdown-item" href="https://github.com/tabler/tabler" target="_blank" rel="noopener">
  556. Source code
  557. </a>
  558. <a class="dropdown-item text-pink" href="https://github.com/sponsors/codecalm" target="_blank" rel="noopener">
  559. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  560. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-inline me-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  561. Sponsor project!
  562. </a>
  563. </div>
  564. </li>
  565. </ul>
  566. <div class="my-2 my-md-0 flex-grow-1 flex-md-grow-0 order-first order-md-last">
  567. <form action="./" method="get" autocomplete="off" novalidate>
  568. <div class="input-icon">
  569. <span class="input-icon-addon">
  570. <!-- Download SVG icon from http://tabler-icons.io/i/search -->
  571. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" /><path d="M21 21l-6 -6" /></svg>
  572. </span>
  573. <input type="text" value="" class="form-control" placeholder="Search…" aria-label="Search in website">
  574. </div>
  575. </form>
  576. </div>
  577. </div>
  578. </div>
  579. </div>
  580. </header>
  581. <div class="page-wrapper">
  582. <!-- Page header -->
  583. <div class="page-header d-print-none">
  584. <div class="container-xl">
  585. <div class="row g-2 align-items-center">
  586. <div class="col">
  587. <!-- Page pre-title -->
  588. <div class="page-pretitle">
  589. Overview
  590. </div>
  591. <h2 class="page-title">
  592. Boxed layout
  593. </h2>
  594. </div>
  595. <!-- Page title actions -->
  596. <div class="col-auto ms-auto d-print-none">
  597. <div class="btn-list">
  598. <span class="d-none d-sm-inline">
  599. <a href="#" class="btn">
  600. New view
  601. </a>
  602. </span>
  603. <a href="#" class="btn btn-primary d-none d-sm-inline-block" data-bs-toggle="modal" data-bs-target="#modal-report">
  604. <!-- Download SVG icon from http://tabler-icons.io/i/plus -->
  605. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 5l0 14" /><path d="M5 12l14 0" /></svg>
  606. Create new report
  607. </a>
  608. <a href="#" class="btn btn-primary d-sm-none btn-icon" data-bs-toggle="modal" data-bs-target="#modal-report" aria-label="Create new report">
  609. <!-- Download SVG icon from http://tabler-icons.io/i/plus -->
  610. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 5l0 14" /><path d="M5 12l14 0" /></svg>
  611. </a>
  612. </div>
  613. </div>
  614. </div>
  615. </div>
  616. </div>
  617. <!-- Page body -->
  618. <div class="page-body">
  619. <div class="container-xl">
  620. <div class="row row-deck row-cards">
  621. <div class="col-sm-6 col-lg-3">
  622. <div class="card">
  623. <div class="card-body">
  624. <div class="d-flex align-items-center">
  625. <div class="subheader">Sales</div>
  626. <div class="ms-auto lh-1">
  627. <div class="dropdown">
  628. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  629. <div class="dropdown-menu dropdown-menu-end">
  630. <a class="dropdown-item active" href="#">Last 7 days</a>
  631. <a class="dropdown-item" href="#">Last 30 days</a>
  632. <a class="dropdown-item" href="#">Last 3 months</a>
  633. </div>
  634. </div>
  635. </div>
  636. </div>
  637. <div class="h1 mb-3">75%</div>
  638. <div class="d-flex mb-2">
  639. <div>Conversion rate</div>
  640. <div class="ms-auto">
  641. <span class="text-green d-inline-flex align-items-center lh-1">
  642. 7% <!-- Download SVG icon from http://tabler-icons.io/i/trending-up -->
  643. <svg xmlns="http://www.w3.org/2000/svg" class="icon ms-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8" /><path d="M14 7l7 0l0 7" /></svg>
  644. </span>
  645. </div>
  646. </div>
  647. <div class="progress progress-sm">
  648. <div class="progress-bar bg-primary" style="width: 75%" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" aria-label="75% Complete">
  649. <span class="visually-hidden">75% Complete</span>
  650. </div>
  651. </div>
  652. </div>
  653. </div>
  654. </div>
  655. <div class="col-sm-6 col-lg-3">
  656. <div class="card">
  657. <div class="card-body">
  658. <div class="d-flex align-items-center">
  659. <div class="subheader">Revenue</div>
  660. <div class="ms-auto lh-1">
  661. <div class="dropdown">
  662. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  663. <div class="dropdown-menu dropdown-menu-end">
  664. <a class="dropdown-item active" href="#">Last 7 days</a>
  665. <a class="dropdown-item" href="#">Last 30 days</a>
  666. <a class="dropdown-item" href="#">Last 3 months</a>
  667. </div>
  668. </div>
  669. </div>
  670. </div>
  671. <div class="d-flex align-items-baseline">
  672. <div class="h1 mb-0 me-2">$4,300</div>
  673. <div class="me-auto">
  674. <span class="text-green d-inline-flex align-items-center lh-1">
  675. 8% <!-- Download SVG icon from http://tabler-icons.io/i/trending-up -->
  676. <svg xmlns="http://www.w3.org/2000/svg" class="icon ms-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8" /><path d="M14 7l7 0l0 7" /></svg>
  677. </span>
  678. </div>
  679. </div>
  680. </div>
  681. <div id="chart-revenue-bg" class="chart-sm"></div>
  682. </div>
  683. </div>
  684. <div class="col-sm-6 col-lg-3">
  685. <div class="card">
  686. <div class="card-body">
  687. <div class="d-flex align-items-center">
  688. <div class="subheader">New clients</div>
  689. <div class="ms-auto lh-1">
  690. <div class="dropdown">
  691. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  692. <div class="dropdown-menu dropdown-menu-end">
  693. <a class="dropdown-item active" href="#">Last 7 days</a>
  694. <a class="dropdown-item" href="#">Last 30 days</a>
  695. <a class="dropdown-item" href="#">Last 3 months</a>
  696. </div>
  697. </div>
  698. </div>
  699. </div>
  700. <div class="d-flex align-items-baseline">
  701. <div class="h1 mb-3 me-2">6,782</div>
  702. <div class="me-auto">
  703. <span class="text-yellow d-inline-flex align-items-center lh-1">
  704. 0% <!-- Download SVG icon from http://tabler-icons.io/i/minus -->
  705. <svg xmlns="http://www.w3.org/2000/svg" class="icon ms-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l14 0" /></svg>
  706. </span>
  707. </div>
  708. </div>
  709. <div id="chart-new-clients" class="chart-sm"></div>
  710. </div>
  711. </div>
  712. </div>
  713. <div class="col-sm-6 col-lg-3">
  714. <div class="card">
  715. <div class="card-body">
  716. <div class="d-flex align-items-center">
  717. <div class="subheader">Active users</div>
  718. <div class="ms-auto lh-1">
  719. <div class="dropdown">
  720. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  721. <div class="dropdown-menu dropdown-menu-end">
  722. <a class="dropdown-item active" href="#">Last 7 days</a>
  723. <a class="dropdown-item" href="#">Last 30 days</a>
  724. <a class="dropdown-item" href="#">Last 3 months</a>
  725. </div>
  726. </div>
  727. </div>
  728. </div>
  729. <div class="d-flex align-items-baseline">
  730. <div class="h1 mb-3 me-2">2,986</div>
  731. <div class="me-auto">
  732. <span class="text-green d-inline-flex align-items-center lh-1">
  733. 4% <!-- Download SVG icon from http://tabler-icons.io/i/trending-up -->
  734. <svg xmlns="http://www.w3.org/2000/svg" class="icon ms-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8" /><path d="M14 7l7 0l0 7" /></svg>
  735. </span>
  736. </div>
  737. </div>
  738. <div id="chart-active-users" class="chart-sm"></div>
  739. </div>
  740. </div>
  741. </div>
  742. <div class="col-12">
  743. <div class="row row-cards">
  744. <div class="col-sm-6 col-lg-3">
  745. <div class="card card-sm">
  746. <div class="card-body">
  747. <div class="row align-items-center">
  748. <div class="col-auto">
  749. <span class="bg-primary text-white avatar"><!-- Download SVG icon from http://tabler-icons.io/i/currency-dollar -->
  750. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2" /><path d="M12 3v3m0 12v3" /></svg>
  751. </span>
  752. </div>
  753. <div class="col">
  754. <div class="font-weight-medium">
  755. 132 Sales
  756. </div>
  757. <div class="text-muted">
  758. 12 waiting payments
  759. </div>
  760. </div>
  761. </div>
  762. </div>
  763. </div>
  764. </div>
  765. <div class="col-sm-6 col-lg-3">
  766. <div class="card card-sm">
  767. <div class="card-body">
  768. <div class="row align-items-center">
  769. <div class="col-auto">
  770. <span class="bg-green text-white avatar"><!-- Download SVG icon from http://tabler-icons.io/i/shopping-cart -->
  771. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" /><path d="M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" /><path d="M17 17h-11v-14h-2" /><path d="M6 5l14 1l-1 7h-13" /></svg>
  772. </span>
  773. </div>
  774. <div class="col">
  775. <div class="font-weight-medium">
  776. 78 Orders
  777. </div>
  778. <div class="text-muted">
  779. 32 shipped
  780. </div>
  781. </div>
  782. </div>
  783. </div>
  784. </div>
  785. </div>
  786. <div class="col-sm-6 col-lg-3">
  787. <div class="card card-sm">
  788. <div class="card-body">
  789. <div class="row align-items-center">
  790. <div class="col-auto">
  791. <span class="bg-twitter text-white avatar"><!-- Download SVG icon from http://tabler-icons.io/i/brand-twitter -->
  792. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z" /></svg>
  793. </span>
  794. </div>
  795. <div class="col">
  796. <div class="font-weight-medium">
  797. 623 Shares
  798. </div>
  799. <div class="text-muted">
  800. 16 today
  801. </div>
  802. </div>
  803. </div>
  804. </div>
  805. </div>
  806. </div>
  807. <div class="col-sm-6 col-lg-3">
  808. <div class="card card-sm">
  809. <div class="card-body">
  810. <div class="row align-items-center">
  811. <div class="col-auto">
  812. <span class="bg-facebook text-white avatar"><!-- Download SVG icon from http://tabler-icons.io/i/brand-facebook -->
  813. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3" /></svg>
  814. </span>
  815. </div>
  816. <div class="col">
  817. <div class="font-weight-medium">
  818. 132 Likes
  819. </div>
  820. <div class="text-muted">
  821. 21 today
  822. </div>
  823. </div>
  824. </div>
  825. </div>
  826. </div>
  827. </div>
  828. </div>
  829. </div>
  830. <div class="col-lg-6">
  831. <div class="card">
  832. <div class="card-body">
  833. <h3 class="card-title">Traffic summary</h3>
  834. <div id="chart-mentions" class="chart-lg"></div>
  835. </div>
  836. </div>
  837. </div>
  838. <div class="col-lg-6">
  839. <div class="card">
  840. <div class="card-body">
  841. <h3 class="card-title">Locations</h3>
  842. <div class="ratio ratio-21x9">
  843. <div>
  844. <div id="map-world" class="w-100 h-100"></div>
  845. </div>
  846. </div>
  847. </div>
  848. </div>
  849. </div>
  850. <div class="col-lg-6">
  851. <div class="row row-cards">
  852. <div class="col-12">
  853. <div class="card">
  854. <div class="card-body">
  855. <p class="mb-3">Using Storage <strong>6854.45 MB </strong>of 8 GB</p>
  856. <div class="progress progress-separated mb-3">
  857. <div class="progress-bar bg-primary" role="progressbar" style="width: 44%" aria-label="Regular"></div>
  858. <div class="progress-bar bg-info" role="progressbar" style="width: 19%" aria-label="System"></div>
  859. <div class="progress-bar bg-success" role="progressbar" style="width: 9%" aria-label="Shared"></div>
  860. </div>
  861. <div class="row">
  862. <div class="col-auto d-flex align-items-center pe-2">
  863. <span class="legend me-2 bg-primary"></span>
  864. <span>Regular</span>
  865. <span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-muted">915MB</span>
  866. </div>
  867. <div class="col-auto d-flex align-items-center px-2">
  868. <span class="legend me-2 bg-info"></span>
  869. <span>System</span>
  870. <span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-muted">415MB</span>
  871. </div>
  872. <div class="col-auto d-flex align-items-center px-2">
  873. <span class="legend me-2 bg-success"></span>
  874. <span>Shared</span>
  875. <span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-muted">201MB</span>
  876. </div>
  877. <div class="col-auto d-flex align-items-center ps-2">
  878. <span class="legend me-2"></span>
  879. <span>Free</span>
  880. <span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-muted">612MB</span>
  881. </div>
  882. </div>
  883. </div>
  884. </div>
  885. </div>
  886. <div class="col-12">
  887. <div class="card" style="height: 28rem">
  888. <div class="card-body card-body-scrollable card-body-scrollable-shadow">
  889. <div class="divide-y">
  890. <div>
  891. <div class="row">
  892. <div class="col-auto">
  893. <span class="avatar">JL</span>
  894. </div>
  895. <div class="col">
  896. <div class="text-truncate">
  897. <strong>Jeffie Lewzey</strong> commented on your <strong>"I'm not a witch."</strong> post.
  898. </div>
  899. <div class="text-muted">yesterday</div>
  900. </div>
  901. <div class="col-auto align-self-center">
  902. <div class="badge bg-primary"></div>
  903. </div>
  904. </div>
  905. </div>
  906. <div>
  907. <div class="row">
  908. <div class="col-auto">
  909. <span class="avatar" style="background-image: url(./static/avatars/002m.jpg)"></span>
  910. </div>
  911. <div class="col">
  912. <div class="text-truncate">
  913. It's <strong>Mallory Hulme</strong>'s birthday. Wish him well!
  914. </div>
  915. <div class="text-muted">2 days ago</div>
  916. </div>
  917. <div class="col-auto align-self-center">
  918. <div class="badge bg-primary"></div>
  919. </div>
  920. </div>
  921. </div>
  922. <div>
  923. <div class="row">
  924. <div class="col-auto">
  925. <span class="avatar" style="background-image: url(./static/avatars/003m.jpg)"></span>
  926. </div>
  927. <div class="col">
  928. <div class="text-truncate">
  929. <strong>Dunn Slane</strong> posted <strong>"Well, what do you want?"</strong>.
  930. </div>
  931. <div class="text-muted">today</div>
  932. </div>
  933. <div class="col-auto align-self-center">
  934. <div class="badge bg-primary"></div>
  935. </div>
  936. </div>
  937. </div>
  938. <div>
  939. <div class="row">
  940. <div class="col-auto">
  941. <span class="avatar" style="background-image: url(./static/avatars/000f.jpg)"></span>
  942. </div>
  943. <div class="col">
  944. <div class="text-truncate">
  945. <strong>Emmy Levet</strong> created a new project <strong>Morning alarm clock</strong>.
  946. </div>
  947. <div class="text-muted">4 days ago</div>
  948. </div>
  949. <div class="col-auto align-self-center">
  950. <div class="badge bg-primary"></div>
  951. </div>
  952. </div>
  953. </div>
  954. <div>
  955. <div class="row">
  956. <div class="col-auto">
  957. <span class="avatar" style="background-image: url(./static/avatars/001f.jpg)"></span>
  958. </div>
  959. <div class="col">
  960. <div class="text-truncate">
  961. <strong>Maryjo Lebarree</strong> liked your photo.
  962. </div>
  963. <div class="text-muted">2 days ago</div>
  964. </div>
  965. </div>
  966. </div>
  967. <div>
  968. <div class="row">
  969. <div class="col-auto">
  970. <span class="avatar">EP</span>
  971. </div>
  972. <div class="col">
  973. <div class="text-truncate">
  974. <strong>Egan Poetz</strong> registered new client as <strong>Trilia</strong>.
  975. </div>
  976. <div class="text-muted">yesterday</div>
  977. </div>
  978. </div>
  979. </div>
  980. <div>
  981. <div class="row">
  982. <div class="col-auto">
  983. <span class="avatar" style="background-image: url(./static/avatars/002f.jpg)"></span>
  984. </div>
  985. <div class="col">
  986. <div class="text-truncate">
  987. <strong>Kellie Skingley</strong> closed a new deal on project <strong>Pen Pineapple Apple Pen</strong>.
  988. </div>
  989. <div class="text-muted">2 days ago</div>
  990. </div>
  991. </div>
  992. </div>
  993. <div>
  994. <div class="row">
  995. <div class="col-auto">
  996. <span class="avatar" style="background-image: url(./static/avatars/003f.jpg)"></span>
  997. </div>
  998. <div class="col">
  999. <div class="text-truncate">
  1000. <strong>Christabel Charlwood</strong> created a new project for <strong>Wikibox</strong>.
  1001. </div>
  1002. <div class="text-muted">4 days ago</div>
  1003. </div>
  1004. </div>
  1005. </div>
  1006. <div>
  1007. <div class="row">
  1008. <div class="col-auto">
  1009. <span class="avatar">HS</span>
  1010. </div>
  1011. <div class="col">
  1012. <div class="text-truncate">
  1013. <strong>Haskel Shelper</strong> change status of <strong>Tabler Icons</strong> from <strong>open</strong> to <strong>closed</strong>.
  1014. </div>
  1015. <div class="text-muted">today</div>
  1016. </div>
  1017. </div>
  1018. </div>
  1019. <div>
  1020. <div class="row">
  1021. <div class="col-auto">
  1022. <span class="avatar" style="background-image: url(./static/avatars/006m.jpg)"></span>
  1023. </div>
  1024. <div class="col">
  1025. <div class="text-truncate">
  1026. <strong>Lorry Mion</strong> liked <strong>Tabler UI Kit</strong>.
  1027. </div>
  1028. <div class="text-muted">yesterday</div>
  1029. </div>
  1030. </div>
  1031. </div>
  1032. <div>
  1033. <div class="row">
  1034. <div class="col-auto">
  1035. <span class="avatar" style="background-image: url(./static/avatars/004f.jpg)"></span>
  1036. </div>
  1037. <div class="col">
  1038. <div class="text-truncate">
  1039. <strong>Leesa Beaty</strong> posted new video.
  1040. </div>
  1041. <div class="text-muted">2 days ago</div>
  1042. </div>
  1043. </div>
  1044. </div>
  1045. <div>
  1046. <div class="row">
  1047. <div class="col-auto">
  1048. <span class="avatar" style="background-image: url(./static/avatars/007m.jpg)"></span>
  1049. </div>
  1050. <div class="col">
  1051. <div class="text-truncate">
  1052. <strong>Perren Keemar</strong> and 3 others followed you.
  1053. </div>
  1054. <div class="text-muted">2 days ago</div>
  1055. </div>
  1056. </div>
  1057. </div>
  1058. <div>
  1059. <div class="row">
  1060. <div class="col-auto">
  1061. <span class="avatar">SA</span>
  1062. </div>
  1063. <div class="col">
  1064. <div class="text-truncate">
  1065. <strong>Sunny Airey</strong> upload 3 new photos to category <strong>Inspirations</strong>.
  1066. </div>
  1067. <div class="text-muted">2 days ago</div>
  1068. </div>
  1069. </div>
  1070. </div>
  1071. <div>
  1072. <div class="row">
  1073. <div class="col-auto">
  1074. <span class="avatar" style="background-image: url(./static/avatars/009m.jpg)"></span>
  1075. </div>
  1076. <div class="col">
  1077. <div class="text-truncate">
  1078. <strong>Geoffry Flaunders</strong> made a <strong>$10</strong> donation.
  1079. </div>
  1080. <div class="text-muted">2 days ago</div>
  1081. </div>
  1082. </div>
  1083. </div>
  1084. <div>
  1085. <div class="row">
  1086. <div class="col-auto">
  1087. <span class="avatar" style="background-image: url(./static/avatars/010m.jpg)"></span>
  1088. </div>
  1089. <div class="col">
  1090. <div class="text-truncate">
  1091. <strong>Thatcher Keel</strong> created a profile.
  1092. </div>
  1093. <div class="text-muted">3 days ago</div>
  1094. </div>
  1095. </div>
  1096. </div>
  1097. <div>
  1098. <div class="row">
  1099. <div class="col-auto">
  1100. <span class="avatar" style="background-image: url(./static/avatars/005f.jpg)"></span>
  1101. </div>
  1102. <div class="col">
  1103. <div class="text-truncate">
  1104. <strong>Dyann Escala</strong> hosted the event <strong>Tabler UI Birthday</strong>.
  1105. </div>
  1106. <div class="text-muted">4 days ago</div>
  1107. </div>
  1108. </div>
  1109. </div>
  1110. <div>
  1111. <div class="row">
  1112. <div class="col-auto">
  1113. <span class="avatar" style="background-image: url(./static/avatars/006f.jpg)"></span>
  1114. </div>
  1115. <div class="col">
  1116. <div class="text-truncate">
  1117. <strong>Avivah Mugleston</strong> mentioned you on <strong>Best of 2020</strong>.
  1118. </div>
  1119. <div class="text-muted">2 days ago</div>
  1120. </div>
  1121. </div>
  1122. </div>
  1123. <div>
  1124. <div class="row">
  1125. <div class="col-auto">
  1126. <span class="avatar">AA</span>
  1127. </div>
  1128. <div class="col">
  1129. <div class="text-truncate">
  1130. <strong>Arlie Armstead</strong> sent a Review Request to <strong>Amanda Blake</strong>.
  1131. </div>
  1132. <div class="text-muted">2 days ago</div>
  1133. </div>
  1134. </div>
  1135. </div>
  1136. </div>
  1137. </div>
  1138. </div>
  1139. </div>
  1140. </div>
  1141. </div>
  1142. <div class="col-lg-6">
  1143. <div class="card">
  1144. <div class="card-header border-0">
  1145. <div class="card-title">Development activity</div>
  1146. </div>
  1147. <div class="position-relative">
  1148. <div class="position-absolute top-0 left-0 px-3 mt-1 w-75">
  1149. <div class="row g-2">
  1150. <div class="col-auto">
  1151. <div class="chart-sparkline chart-sparkline-square" id="sparkline-activity"></div>
  1152. </div>
  1153. <div class="col">
  1154. <div>Today's Earning: $4,262.40</div>
  1155. <div class="text-muted"><!-- Download SVG icon from http://tabler-icons.io/i/trending-up -->
  1156. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-inline text-green" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8" /><path d="M14 7l7 0l0 7" /></svg>
  1157. +5% more than yesterday</div>
  1158. </div>
  1159. </div>
  1160. </div>
  1161. <div id="chart-development-activity"></div>
  1162. </div>
  1163. <div class="card-table table-responsive">
  1164. <table class="table table-vcenter">
  1165. <thead>
  1166. <tr>
  1167. <th>User</th>
  1168. <th>Commit</th>
  1169. <th>Date</th>
  1170. </tr>
  1171. </thead>
  1172. <tbody>
  1173. <tr>
  1174. <td class="w-1">
  1175. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  1176. </td>
  1177. <td class="td-truncate">
  1178. <div class="text-truncate">
  1179. Fix dart Sass compatibility (#29755)
  1180. </div>
  1181. </td>
  1182. <td class="text-nowrap text-muted">28 Nov 2019</td>
  1183. </tr>
  1184. <tr>
  1185. <td class="w-1">
  1186. <span class="avatar avatar-sm">JL</span>
  1187. </td>
  1188. <td class="td-truncate">
  1189. <div class="text-truncate">
  1190. Change deprecated html tags to text decoration classes (#29604)
  1191. </div>
  1192. </td>
  1193. <td class="text-nowrap text-muted">27 Nov 2019</td>
  1194. </tr>
  1195. <tr>
  1196. <td class="w-1">
  1197. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/002m.jpg)"></span>
  1198. </td>
  1199. <td class="td-truncate">
  1200. <div class="text-truncate">
  1201. justify-content:between ⇒ justify-content:space-between (#29734)
  1202. </div>
  1203. </td>
  1204. <td class="text-nowrap text-muted">26 Nov 2019</td>
  1205. </tr>
  1206. <tr>
  1207. <td class="w-1">
  1208. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/003m.jpg)"></span>
  1209. </td>
  1210. <td class="td-truncate">
  1211. <div class="text-truncate">
  1212. Update change-version.js (#29736)
  1213. </div>
  1214. </td>
  1215. <td class="text-nowrap text-muted">26 Nov 2019</td>
  1216. </tr>
  1217. <tr>
  1218. <td class="w-1">
  1219. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000f.jpg)"></span>
  1220. </td>
  1221. <td class="td-truncate">
  1222. <div class="text-truncate">
  1223. Regenerate package-lock.json (#29730)
  1224. </div>
  1225. </td>
  1226. <td class="text-nowrap text-muted">25 Nov 2019</td>
  1227. </tr>
  1228. </tbody>
  1229. </table>
  1230. </div>
  1231. </div>
  1232. </div>
  1233. <div class="col-12">
  1234. <div class="card card-md">
  1235. <div class="card-stamp card-stamp-lg">
  1236. <div class="card-stamp-icon bg-primary">
  1237. <!-- Download SVG icon from http://tabler-icons.io/i/ghost -->
  1238. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7" /><path d="M10 10l.01 0" /><path d="M14 10l.01 0" /><path d="M10 14a3.5 3.5 0 0 0 4 0" /></svg>
  1239. </div>
  1240. </div>
  1241. <div class="card-body">
  1242. <div class="row align-items-center">
  1243. <div class="col-10">
  1244. <h3 class="h1">Tabler Icons</h3>
  1245. <div class="markdown text-muted">
  1246. All icons come from the Tabler Icons set and are MIT-licensed. Visit
  1247. <a href="https://tabler-icons.io" target="_blank" rel="noopener">tabler-icons.io</a>,
  1248. download any of the 3222 icons in SVG, PNG or&nbsp;React and use them in your favourite design tools.
  1249. </div>
  1250. <div class="mt-3">
  1251. <a href="https://tabler-icons.io" class="btn btn-primary" target="_blank" rel="noopener">Download icons</a>
  1252. </div>
  1253. </div>
  1254. </div>
  1255. </div>
  1256. </div>
  1257. </div>
  1258. <div class="col-md-12 col-lg-8">
  1259. <div class="card">
  1260. <div class="card-header">
  1261. <h3 class="card-title">Most Visited Pages</h3>
  1262. </div>
  1263. <div class="card-table table-responsive">
  1264. <table class="table table-vcenter">
  1265. <thead>
  1266. <tr>
  1267. <th>Page name</th>
  1268. <th>Visitors</th>
  1269. <th>Unique</th>
  1270. <th colspan="2">Bounce rate</th>
  1271. </tr>
  1272. </thead>
  1273. <tr>
  1274. <td>
  1275. /
  1276. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1277. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" /><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" /></svg>
  1278. </a>
  1279. </td>
  1280. <td class="text-muted">4,896</td>
  1281. <td class="text-muted">3,654</td>
  1282. <td class="text-muted">82.54%</td>
  1283. <td class="text-end w-1">
  1284. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-1"></div>
  1285. </td>
  1286. </tr>
  1287. <tr>
  1288. <td>
  1289. /form-elements.html
  1290. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1291. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" /><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" /></svg>
  1292. </a>
  1293. </td>
  1294. <td class="text-muted">3,652</td>
  1295. <td class="text-muted">3,215</td>
  1296. <td class="text-muted">76.29%</td>
  1297. <td class="text-end w-1">
  1298. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-2"></div>
  1299. </td>
  1300. </tr>
  1301. <tr>
  1302. <td>
  1303. /index.html
  1304. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1305. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" /><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" /></svg>
  1306. </a>
  1307. </td>
  1308. <td class="text-muted">3,256</td>
  1309. <td class="text-muted">2,865</td>
  1310. <td class="text-muted">72.65%</td>
  1311. <td class="text-end w-1">
  1312. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-3"></div>
  1313. </td>
  1314. </tr>
  1315. <tr>
  1316. <td>
  1317. /icons.html
  1318. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1319. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" /><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" /></svg>
  1320. </a>
  1321. </td>
  1322. <td class="text-muted">986</td>
  1323. <td class="text-muted">865</td>
  1324. <td class="text-muted">44.89%</td>
  1325. <td class="text-end w-1">
  1326. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-4"></div>
  1327. </td>
  1328. </tr>
  1329. <tr>
  1330. <td>
  1331. /docs/
  1332. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1333. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" /><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" /></svg>
  1334. </a>
  1335. </td>
  1336. <td class="text-muted">912</td>
  1337. <td class="text-muted">822</td>
  1338. <td class="text-muted">41.12%</td>
  1339. <td class="text-end w-1">
  1340. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-5"></div>
  1341. </td>
  1342. </tr>
  1343. <tr>
  1344. <td>
  1345. /accordion.html
  1346. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1347. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" /><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" /></svg>
  1348. </a>
  1349. </td>
  1350. <td class="text-muted">855</td>
  1351. <td class="text-muted">798</td>
  1352. <td class="text-muted">32.65%</td>
  1353. <td class="text-end w-1">
  1354. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-6"></div>
  1355. </td>
  1356. </tr>
  1357. </table>
  1358. </div>
  1359. </div>
  1360. </div>
  1361. <div class="col-md-6 col-lg-4">
  1362. <a href="https://github.com/sponsors/codecalm" class="card card-sponsor" target="_blank" rel="noopener" style="background-image: url(./static/sponsor-banner-homepage.svg)" aria-label="Sponsor Tabler!">
  1363. <div class="card-body"></div>
  1364. </a>
  1365. </div>
  1366. <div class="col-md-6 col-lg-4">
  1367. <div class="card">
  1368. <div class="card-header">
  1369. <h3 class="card-title">Social Media Traffic</h3>
  1370. </div>
  1371. <table class="table card-table table-vcenter">
  1372. <thead>
  1373. <tr>
  1374. <th>Network</th>
  1375. <th colspan="2">Visitors</th>
  1376. </tr>
  1377. </thead>
  1378. <tbody>
  1379. <tr>
  1380. <td>Instagram</td>
  1381. <td>3,550</td>
  1382. <td class="w-50">
  1383. <div class="progress progress-xs">
  1384. <div class="progress-bar bg-primary" style="width: 71.0%"></div>
  1385. </div>
  1386. </td>
  1387. </tr>
  1388. <tr>
  1389. <td>Twitter</td>
  1390. <td>1,798</td>
  1391. <td class="w-50">
  1392. <div class="progress progress-xs">
  1393. <div class="progress-bar bg-primary" style="width: 35.96%"></div>
  1394. </div>
  1395. </td>
  1396. </tr>
  1397. <tr>
  1398. <td>Facebook</td>
  1399. <td>1,245</td>
  1400. <td class="w-50">
  1401. <div class="progress progress-xs">
  1402. <div class="progress-bar bg-primary" style="width: 24.9%"></div>
  1403. </div>
  1404. </td>
  1405. </tr>
  1406. <tr>
  1407. <td>TikTok</td>
  1408. <td>986</td>
  1409. <td class="w-50">
  1410. <div class="progress progress-xs">
  1411. <div class="progress-bar bg-primary" style="width: 19.72%"></div>
  1412. </div>
  1413. </td>
  1414. </tr>
  1415. <tr>
  1416. <td>Pinterest</td>
  1417. <td>854</td>
  1418. <td class="w-50">
  1419. <div class="progress progress-xs">
  1420. <div class="progress-bar bg-primary" style="width: 17.08%"></div>
  1421. </div>
  1422. </td>
  1423. </tr>
  1424. <tr>
  1425. <td>VK</td>
  1426. <td>650</td>
  1427. <td class="w-50">
  1428. <div class="progress progress-xs">
  1429. <div class="progress-bar bg-primary" style="width: 13.0%"></div>
  1430. </div>
  1431. </td>
  1432. </tr>
  1433. <tr>
  1434. <td>Pinterest</td>
  1435. <td>420</td>
  1436. <td class="w-50">
  1437. <div class="progress progress-xs">
  1438. <div class="progress-bar bg-primary" style="width: 8.4%"></div>
  1439. </div>
  1440. </td>
  1441. </tr>
  1442. </tbody>
  1443. </table>
  1444. </div>
  1445. </div>
  1446. <div class="col-md-12 col-lg-8">
  1447. <div class="card">
  1448. <div class="card-header">
  1449. <h3 class="card-title">Tasks</h3>
  1450. </div>
  1451. <div class="table-responsive">
  1452. <table class="table card-table table-vcenter">
  1453. <tr>
  1454. <td class="w-1 pe-0">
  1455. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" checked >
  1456. </td>
  1457. <td class="w-100">
  1458. <a href="#" class="text-reset">Extend the data model.</a>
  1459. </td>
  1460. <td class="text-nowrap text-muted">
  1461. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1462. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" /><path d="M16 3l0 4" /><path d="M8 3l0 4" /><path d="M4 11l16 0" /><path d="M11 15l1 0" /><path d="M12 15l0 3" /></svg>
  1463. August 04, 2021
  1464. </td>
  1465. <td class="text-nowrap">
  1466. <a href="#" class="text-muted">
  1467. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1468. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1469. 2/7
  1470. </a>
  1471. </td>
  1472. <td class="text-nowrap">
  1473. <a href="#" class="text-muted">
  1474. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1475. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><path d="M8 9l8 0" /><path d="M8 13l6 0" /></svg>
  1476. 3</a>
  1477. </td>
  1478. <td>
  1479. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  1480. </td>
  1481. </tr>
  1482. <tr>
  1483. <td class="w-1 pe-0">
  1484. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" >
  1485. </td>
  1486. <td class="w-100">
  1487. <a href="#" class="text-reset">Verify the event flow.</a>
  1488. </td>
  1489. <td class="text-nowrap text-muted">
  1490. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1491. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" /><path d="M16 3l0 4" /><path d="M8 3l0 4" /><path d="M4 11l16 0" /><path d="M11 15l1 0" /><path d="M12 15l0 3" /></svg>
  1492. January 03, 2019
  1493. </td>
  1494. <td class="text-nowrap">
  1495. <a href="#" class="text-muted">
  1496. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1497. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1498. 3/10
  1499. </a>
  1500. </td>
  1501. <td class="text-nowrap">
  1502. <a href="#" class="text-muted">
  1503. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1504. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><path d="M8 9l8 0" /><path d="M8 13l6 0" /></svg>
  1505. 6</a>
  1506. </td>
  1507. <td>
  1508. <span class="avatar avatar-sm">JL</span>
  1509. </td>
  1510. </tr>
  1511. <tr>
  1512. <td class="w-1 pe-0">
  1513. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" >
  1514. </td>
  1515. <td class="w-100">
  1516. <a href="#" class="text-reset">Database backup and maintenance</a>
  1517. </td>
  1518. <td class="text-nowrap text-muted">
  1519. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1520. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" /><path d="M16 3l0 4" /><path d="M8 3l0 4" /><path d="M4 11l16 0" /><path d="M11 15l1 0" /><path d="M12 15l0 3" /></svg>
  1521. December 28, 2018
  1522. </td>
  1523. <td class="text-nowrap">
  1524. <a href="#" class="text-muted">
  1525. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1526. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1527. 0/6
  1528. </a>
  1529. </td>
  1530. <td class="text-nowrap">
  1531. <a href="#" class="text-muted">
  1532. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1533. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><path d="M8 9l8 0" /><path d="M8 13l6 0" /></svg>
  1534. 1</a>
  1535. </td>
  1536. <td>
  1537. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/002m.jpg)"></span>
  1538. </td>
  1539. </tr>
  1540. <tr>
  1541. <td class="w-1 pe-0">
  1542. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" checked >
  1543. </td>
  1544. <td class="w-100">
  1545. <a href="#" class="text-reset">Identify the implementation team.</a>
  1546. </td>
  1547. <td class="text-nowrap text-muted">
  1548. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1549. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" /><path d="M16 3l0 4" /><path d="M8 3l0 4" /><path d="M4 11l16 0" /><path d="M11 15l1 0" /><path d="M12 15l0 3" /></svg>
  1550. November 07, 2020
  1551. </td>
  1552. <td class="text-nowrap">
  1553. <a href="#" class="text-muted">
  1554. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1555. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1556. 6/10
  1557. </a>
  1558. </td>
  1559. <td class="text-nowrap">
  1560. <a href="#" class="text-muted">
  1561. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1562. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><path d="M8 9l8 0" /><path d="M8 13l6 0" /></svg>
  1563. 12</a>
  1564. </td>
  1565. <td>
  1566. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/003m.jpg)"></span>
  1567. </td>
  1568. </tr>
  1569. <tr>
  1570. <td class="w-1 pe-0">
  1571. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" >
  1572. </td>
  1573. <td class="w-100">
  1574. <a href="#" class="text-reset">Define users and workflow</a>
  1575. </td>
  1576. <td class="text-nowrap text-muted">
  1577. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1578. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" /><path d="M16 3l0 4" /><path d="M8 3l0 4" /><path d="M4 11l16 0" /><path d="M11 15l1 0" /><path d="M12 15l0 3" /></svg>
  1579. November 23, 2021
  1580. </td>
  1581. <td class="text-nowrap">
  1582. <a href="#" class="text-muted">
  1583. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1584. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1585. 3/7
  1586. </a>
  1587. </td>
  1588. <td class="text-nowrap">
  1589. <a href="#" class="text-muted">
  1590. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1591. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><path d="M8 9l8 0" /><path d="M8 13l6 0" /></svg>
  1592. 5</a>
  1593. </td>
  1594. <td>
  1595. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000f.jpg)"></span>
  1596. </td>
  1597. </tr>
  1598. <tr>
  1599. <td class="w-1 pe-0">
  1600. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" checked >
  1601. </td>
  1602. <td class="w-100">
  1603. <a href="#" class="text-reset">Check Pull Requests</a>
  1604. </td>
  1605. <td class="text-nowrap text-muted">
  1606. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1607. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 5m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" /><path d="M16 3l0 4" /><path d="M8 3l0 4" /><path d="M4 11l16 0" /><path d="M11 15l1 0" /><path d="M12 15l0 3" /></svg>
  1608. January 14, 2021
  1609. </td>
  1610. <td class="text-nowrap">
  1611. <a href="#" class="text-muted">
  1612. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1613. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1614. 2/9
  1615. </a>
  1616. </td>
  1617. <td class="text-nowrap">
  1618. <a href="#" class="text-muted">
  1619. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1620. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><path d="M8 9l8 0" /><path d="M8 13l6 0" /></svg>
  1621. 3</a>
  1622. </td>
  1623. <td>
  1624. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/001f.jpg)"></span>
  1625. </td>
  1626. </tr>
  1627. </table>
  1628. </div>
  1629. </div>
  1630. </div>
  1631. <div class="col-12">
  1632. <div class="card">
  1633. <div class="card-header">
  1634. <h3 class="card-title">Invoices</h3>
  1635. </div>
  1636. <div class="card-body border-bottom py-3">
  1637. <div class="d-flex">
  1638. <div class="text-muted">
  1639. Show
  1640. <div class="mx-2 d-inline-block">
  1641. <input type="text" class="form-control form-control-sm" value="8" size="3" aria-label="Invoices count">
  1642. </div>
  1643. entries
  1644. </div>
  1645. <div class="ms-auto text-muted">
  1646. Search:
  1647. <div class="ms-2 d-inline-block">
  1648. <input type="text" class="form-control form-control-sm" aria-label="Search invoice">
  1649. </div>
  1650. </div>
  1651. </div>
  1652. </div>
  1653. <div class="table-responsive">
  1654. <table class="table card-table table-vcenter text-nowrap datatable">
  1655. <thead>
  1656. <tr>
  1657. <th class="w-1"><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select all invoices"></th>
  1658. <th class="w-1">No. <!-- Download SVG icon from http://tabler-icons.io/i/chevron-up -->
  1659. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-sm icon-thick" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M6 15l6 -6l6 6" /></svg>
  1660. </th>
  1661. <th>Invoice Subject</th>
  1662. <th>Client</th>
  1663. <th>VAT No.</th>
  1664. <th>Created</th>
  1665. <th>Status</th>
  1666. <th>Price</th>
  1667. <th></th>
  1668. </tr>
  1669. </thead>
  1670. <tbody>
  1671. <tr>
  1672. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1673. <td><span class="text-muted">001401</span></td>
  1674. <td><a href="invoice.html" class="text-reset" tabindex="-1">Design Works</a></td>
  1675. <td>
  1676. <span class="flag flag-country-us"></span>
  1677. Carlson Limited
  1678. </td>
  1679. <td>
  1680. 87956621
  1681. </td>
  1682. <td>
  1683. 15 Dec 2017
  1684. </td>
  1685. <td>
  1686. <span class="badge bg-success me-1"></span> Paid
  1687. </td>
  1688. <td>$887</td>
  1689. <td class="text-end">
  1690. <span class="dropdown">
  1691. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1692. <div class="dropdown-menu dropdown-menu-end">
  1693. <a class="dropdown-item" href="#">
  1694. Action
  1695. </a>
  1696. <a class="dropdown-item" href="#">
  1697. Another action
  1698. </a>
  1699. </div>
  1700. </span>
  1701. </td>
  1702. </tr>
  1703. <tr>
  1704. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1705. <td><span class="text-muted">001402</span></td>
  1706. <td><a href="invoice.html" class="text-reset" tabindex="-1">UX Wireframes</a></td>
  1707. <td>
  1708. <span class="flag flag-country-gb"></span>
  1709. Adobe
  1710. </td>
  1711. <td>
  1712. 87956421
  1713. </td>
  1714. <td>
  1715. 12 Apr 2017
  1716. </td>
  1717. <td>
  1718. <span class="badge bg-warning me-1"></span> Pending
  1719. </td>
  1720. <td>$1200</td>
  1721. <td class="text-end">
  1722. <span class="dropdown">
  1723. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1724. <div class="dropdown-menu dropdown-menu-end">
  1725. <a class="dropdown-item" href="#">
  1726. Action
  1727. </a>
  1728. <a class="dropdown-item" href="#">
  1729. Another action
  1730. </a>
  1731. </div>
  1732. </span>
  1733. </td>
  1734. </tr>
  1735. <tr>
  1736. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1737. <td><span class="text-muted">001403</span></td>
  1738. <td><a href="invoice.html" class="text-reset" tabindex="-1">New Dashboard</a></td>
  1739. <td>
  1740. <span class="flag flag-country-de"></span>
  1741. Bluewolf
  1742. </td>
  1743. <td>
  1744. 87952621
  1745. </td>
  1746. <td>
  1747. 23 Oct 2017
  1748. </td>
  1749. <td>
  1750. <span class="badge bg-warning me-1"></span> Pending
  1751. </td>
  1752. <td>$534</td>
  1753. <td class="text-end">
  1754. <span class="dropdown">
  1755. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1756. <div class="dropdown-menu dropdown-menu-end">
  1757. <a class="dropdown-item" href="#">
  1758. Action
  1759. </a>
  1760. <a class="dropdown-item" href="#">
  1761. Another action
  1762. </a>
  1763. </div>
  1764. </span>
  1765. </td>
  1766. </tr>
  1767. <tr>
  1768. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1769. <td><span class="text-muted">001404</span></td>
  1770. <td><a href="invoice.html" class="text-reset" tabindex="-1">Landing Page</a></td>
  1771. <td>
  1772. <span class="flag flag-country-br"></span>
  1773. Salesforce
  1774. </td>
  1775. <td>
  1776. 87953421
  1777. </td>
  1778. <td>
  1779. 2 Sep 2017
  1780. </td>
  1781. <td>
  1782. <span class="badge bg-secondary me-1"></span> Due in 2 Weeks
  1783. </td>
  1784. <td>$1500</td>
  1785. <td class="text-end">
  1786. <span class="dropdown">
  1787. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1788. <div class="dropdown-menu dropdown-menu-end">
  1789. <a class="dropdown-item" href="#">
  1790. Action
  1791. </a>
  1792. <a class="dropdown-item" href="#">
  1793. Another action
  1794. </a>
  1795. </div>
  1796. </span>
  1797. </td>
  1798. </tr>
  1799. <tr>
  1800. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1801. <td><span class="text-muted">001405</span></td>
  1802. <td><a href="invoice.html" class="text-reset" tabindex="-1">Marketing Templates</a></td>
  1803. <td>
  1804. <span class="flag flag-country-pl"></span>
  1805. Printic
  1806. </td>
  1807. <td>
  1808. 87956621
  1809. </td>
  1810. <td>
  1811. 29 Jan 2018
  1812. </td>
  1813. <td>
  1814. <span class="badge bg-danger me-1"></span> Paid Today
  1815. </td>
  1816. <td>$648</td>
  1817. <td class="text-end">
  1818. <span class="dropdown">
  1819. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1820. <div class="dropdown-menu dropdown-menu-end">
  1821. <a class="dropdown-item" href="#">
  1822. Action
  1823. </a>
  1824. <a class="dropdown-item" href="#">
  1825. Another action
  1826. </a>
  1827. </div>
  1828. </span>
  1829. </td>
  1830. </tr>
  1831. <tr>
  1832. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1833. <td><span class="text-muted">001406</span></td>
  1834. <td><a href="invoice.html" class="text-reset" tabindex="-1">Sales Presentation</a></td>
  1835. <td>
  1836. <span class="flag flag-country-br"></span>
  1837. Tabdaq
  1838. </td>
  1839. <td>
  1840. 87956621
  1841. </td>
  1842. <td>
  1843. 4 Feb 2018
  1844. </td>
  1845. <td>
  1846. <span class="badge bg-secondary me-1"></span> Due in 3 Weeks
  1847. </td>
  1848. <td>$300</td>
  1849. <td class="text-end">
  1850. <span class="dropdown">
  1851. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1852. <div class="dropdown-menu dropdown-menu-end">
  1853. <a class="dropdown-item" href="#">
  1854. Action
  1855. </a>
  1856. <a class="dropdown-item" href="#">
  1857. Another action
  1858. </a>
  1859. </div>
  1860. </span>
  1861. </td>
  1862. </tr>
  1863. <tr>
  1864. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1865. <td><span class="text-muted">001407</span></td>
  1866. <td><a href="invoice.html" class="text-reset" tabindex="-1">Logo & Print</a></td>
  1867. <td>
  1868. <span class="flag flag-country-us"></span>
  1869. Apple
  1870. </td>
  1871. <td>
  1872. 87956621
  1873. </td>
  1874. <td>
  1875. 22 Mar 2018
  1876. </td>
  1877. <td>
  1878. <span class="badge bg-success me-1"></span> Paid Today
  1879. </td>
  1880. <td>$2500</td>
  1881. <td class="text-end">
  1882. <span class="dropdown">
  1883. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1884. <div class="dropdown-menu dropdown-menu-end">
  1885. <a class="dropdown-item" href="#">
  1886. Action
  1887. </a>
  1888. <a class="dropdown-item" href="#">
  1889. Another action
  1890. </a>
  1891. </div>
  1892. </span>
  1893. </td>
  1894. </tr>
  1895. <tr>
  1896. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1897. <td><span class="text-muted">001408</span></td>
  1898. <td><a href="invoice.html" class="text-reset" tabindex="-1">Icons</a></td>
  1899. <td>
  1900. <span class="flag flag-country-pl"></span>
  1901. Tookapic
  1902. </td>
  1903. <td>
  1904. 87956621
  1905. </td>
  1906. <td>
  1907. 13 May 2018
  1908. </td>
  1909. <td>
  1910. <span class="badge bg-success me-1"></span> Paid Today
  1911. </td>
  1912. <td>$940</td>
  1913. <td class="text-end">
  1914. <span class="dropdown">
  1915. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1916. <div class="dropdown-menu dropdown-menu-end">
  1917. <a class="dropdown-item" href="#">
  1918. Action
  1919. </a>
  1920. <a class="dropdown-item" href="#">
  1921. Another action
  1922. </a>
  1923. </div>
  1924. </span>
  1925. </td>
  1926. </tr>
  1927. </tbody>
  1928. </table>
  1929. </div>
  1930. <div class="card-footer d-flex align-items-center">
  1931. <p class="m-0 text-muted">Showing <span>1</span> to <span>8</span> of <span>16</span> entries</p>
  1932. <ul class="pagination m-0 ms-auto">
  1933. <li class="page-item disabled">
  1934. <a class="page-link" href="#" tabindex="-1" aria-disabled="true">
  1935. <!-- Download SVG icon from http://tabler-icons.io/i/chevron-left -->
  1936. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M15 6l-6 6l6 6" /></svg>
  1937. prev
  1938. </a>
  1939. </li>
  1940. <li class="page-item"><a class="page-link" href="#">1</a></li>
  1941. <li class="page-item active"><a class="page-link" href="#">2</a></li>
  1942. <li class="page-item"><a class="page-link" href="#">3</a></li>
  1943. <li class="page-item"><a class="page-link" href="#">4</a></li>
  1944. <li class="page-item"><a class="page-link" href="#">5</a></li>
  1945. <li class="page-item">
  1946. <a class="page-link" href="#">
  1947. next <!-- Download SVG icon from http://tabler-icons.io/i/chevron-right -->
  1948. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 6l6 6l-6 6" /></svg>
  1949. </a>
  1950. </li>
  1951. </ul>
  1952. </div>
  1953. </div>
  1954. </div>
  1955. </div>
  1956. </div>
  1957. </div>
  1958. <footer class="footer footer-transparent d-print-none">
  1959. <div class="container-xl">
  1960. <div class="row text-center align-items-center flex-row-reverse">
  1961. <div class="col-lg-auto ms-lg-auto">
  1962. <ul class="list-inline list-inline-dots mb-0">
  1963. <li class="list-inline-item"><a href="./docs/" class="link-secondary">Documentation</a></li>
  1964. <li class="list-inline-item"><a href="./license.html" class="link-secondary">License</a></li>
  1965. <li class="list-inline-item"><a href="https://github.com/tabler/tabler" target="_blank" class="link-secondary" rel="noopener">Source code</a></li>
  1966. <li class="list-inline-item">
  1967. <a href="https://github.com/sponsors/codecalm" target="_blank" class="link-secondary" rel="noopener">
  1968. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1969. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-pink icon-filled icon-inline" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  1970. Sponsor
  1971. </a>
  1972. </li>
  1973. </ul>
  1974. </div>
  1975. <div class="col-12 col-lg-auto mt-3 mt-lg-0">
  1976. <ul class="list-inline list-inline-dots mb-0">
  1977. <li class="list-inline-item">
  1978. Copyright &copy; 2023
  1979. <a href="." class="link-secondary">Tabler</a>.
  1980. All rights reserved.
  1981. </li>
  1982. <li class="list-inline-item">
  1983. <a href="./changelog.html" class="link-secondary" rel="noopener">
  1984. v1.0.0-beta17
  1985. </a>
  1986. </li>
  1987. </ul>
  1988. </div>
  1989. </div>
  1990. </div>
  1991. </footer>
  1992. </div>
  1993. </div>
  1994. <div class="modal modal-blur fade" id="modal-report" tabindex="-1" role="dialog" aria-hidden="true">
  1995. <div class="modal-dialog modal-lg" role="document">
  1996. <div class="modal-content">
  1997. <div class="modal-header">
  1998. <h5 class="modal-title">New report</h5>
  1999. <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
  2000. </div>
  2001. <div class="modal-body">
  2002. <div class="mb-3">
  2003. <label class="form-label">Name</label>
  2004. <input type="text" class="form-control" name="example-text-input" placeholder="Your report name">
  2005. </div>
  2006. <label class="form-label">Report type</label>
  2007. <div class="form-selectgroup-boxes row mb-3">
  2008. <div class="col-lg-6">
  2009. <label class="form-selectgroup-item">
  2010. <input type="radio" name="report-type" value="1" class="form-selectgroup-input" checked>
  2011. <span class="form-selectgroup-label d-flex align-items-center p-3">
  2012. <span class="me-3">
  2013. <span class="form-selectgroup-check"></span>
  2014. </span>
  2015. <span class="form-selectgroup-label-content">
  2016. <span class="form-selectgroup-title strong mb-1">Simple</span>
  2017. <span class="d-block text-muted">Provide only basic data needed for the report</span>
  2018. </span>
  2019. </span>
  2020. </label>
  2021. </div>
  2022. <div class="col-lg-6">
  2023. <label class="form-selectgroup-item">
  2024. <input type="radio" name="report-type" value="1" class="form-selectgroup-input">
  2025. <span class="form-selectgroup-label d-flex align-items-center p-3">
  2026. <span class="me-3">
  2027. <span class="form-selectgroup-check"></span>
  2028. </span>
  2029. <span class="form-selectgroup-label-content">
  2030. <span class="form-selectgroup-title strong mb-1">Advanced</span>
  2031. <span class="d-block text-muted">Insert charts and additional advanced analyses to be inserted in the report</span>
  2032. </span>
  2033. </span>
  2034. </label>
  2035. </div>
  2036. </div>
  2037. <div class="row">
  2038. <div class="col-lg-8">
  2039. <div class="mb-3">
  2040. <label class="form-label">Report url</label>
  2041. <div class="input-group input-group-flat">
  2042. <span class="input-group-text">
  2043. https://tabler.io/reports/
  2044. </span>
  2045. <input type="text" class="form-control ps-0" value="report-01" autocomplete="off">
  2046. </div>
  2047. </div>
  2048. </div>
  2049. <div class="col-lg-4">
  2050. <div class="mb-3">
  2051. <label class="form-label">Visibility</label>
  2052. <select class="form-select">
  2053. <option value="1" selected>Private</option>
  2054. <option value="2">Public</option>
  2055. <option value="3">Hidden</option>
  2056. </select>
  2057. </div>
  2058. </div>
  2059. </div>
  2060. </div>
  2061. <div class="modal-body">
  2062. <div class="row">
  2063. <div class="col-lg-6">
  2064. <div class="mb-3">
  2065. <label class="form-label">Client name</label>
  2066. <input type="text" class="form-control">
  2067. </div>
  2068. </div>
  2069. <div class="col-lg-6">
  2070. <div class="mb-3">
  2071. <label class="form-label">Reporting period</label>
  2072. <input type="date" class="form-control">
  2073. </div>
  2074. </div>
  2075. <div class="col-lg-12">
  2076. <div>
  2077. <label class="form-label">Additional information</label>
  2078. <textarea class="form-control" rows="3"></textarea>
  2079. </div>
  2080. </div>
  2081. </div>
  2082. </div>
  2083. <div class="modal-footer">
  2084. <a href="#" class="btn btn-link link-secondary" data-bs-dismiss="modal">
  2085. Cancel
  2086. </a>
  2087. <a href="#" class="btn btn-primary ms-auto" data-bs-dismiss="modal">
  2088. <!-- Download SVG icon from http://tabler-icons.io/i/plus -->
  2089. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 5l0 14" /><path d="M5 12l14 0" /></svg>
  2090. Create new report
  2091. </a>
  2092. </div>
  2093. </div>
  2094. </div>
  2095. </div>
  2096. <!-- Libs JS -->
  2097. <script src="./dist/libs/apexcharts/dist/apexcharts.min.js?1674944402" defer></script>
  2098. <script src="./dist/libs/jsvectormap/dist/js/jsvectormap.min.js?1674944402" defer></script>
  2099. <script src="./dist/libs/jsvectormap/dist/maps/world.js?1674944402" defer></script>
  2100. <script src="./dist/libs/jsvectormap/dist/maps/world-merc.js?1674944402" defer></script>
  2101. <!-- Tabler Core -->
  2102. <script src="./dist/js/tabler.min.js?1674944402" defer></script>
  2103. <script src="./dist/js/demo.min.js?1674944402" defer></script>
  2104. <script>
  2105. // @formatter:off
  2106. document.addEventListener("DOMContentLoaded", function () {
  2107. window.ApexCharts && (new ApexCharts(document.getElementById('chart-revenue-bg'), {
  2108. chart: {
  2109. type: "area",
  2110. fontFamily: 'inherit',
  2111. height: 40.0,
  2112. sparkline: {
  2113. enabled: true
  2114. },
  2115. animations: {
  2116. enabled: false
  2117. },
  2118. },
  2119. dataLabels: {
  2120. enabled: false,
  2121. },
  2122. fill: {
  2123. opacity: .16,
  2124. type: 'solid'
  2125. },
  2126. stroke: {
  2127. width: 2,
  2128. lineCap: "round",
  2129. curve: "smooth",
  2130. },
  2131. series: [{
  2132. name: "Profits",
  2133. data: [37, 35, 44, 28, 36, 24, 65, 31, 37, 39, 62, 51, 35, 41, 35, 27, 93, 53, 61, 27, 54, 43, 19, 46, 39, 62, 51, 35, 41, 67]
  2134. }],
  2135. tooltip: {
  2136. theme: 'dark'
  2137. },
  2138. grid: {
  2139. strokeDashArray: 4,
  2140. },
  2141. xaxis: {
  2142. labels: {
  2143. padding: 0,
  2144. },
  2145. tooltip: {
  2146. enabled: false
  2147. },
  2148. axisBorder: {
  2149. show: false,
  2150. },
  2151. type: 'datetime',
  2152. },
  2153. yaxis: {
  2154. labels: {
  2155. padding: 4
  2156. },
  2157. },
  2158. labels: [
  2159. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  2160. ],
  2161. colors: [tabler.getColor("primary")],
  2162. legend: {
  2163. show: false,
  2164. },
  2165. })).render();
  2166. });
  2167. // @formatter:on
  2168. </script>
  2169. <script>
  2170. // @formatter:off
  2171. document.addEventListener("DOMContentLoaded", function () {
  2172. window.ApexCharts && (new ApexCharts(document.getElementById('chart-new-clients'), {
  2173. chart: {
  2174. type: "line",
  2175. fontFamily: 'inherit',
  2176. height: 40.0,
  2177. sparkline: {
  2178. enabled: true
  2179. },
  2180. animations: {
  2181. enabled: false
  2182. },
  2183. },
  2184. fill: {
  2185. opacity: 1,
  2186. },
  2187. stroke: {
  2188. width: [2, 1],
  2189. dashArray: [0, 3],
  2190. lineCap: "round",
  2191. curve: "smooth",
  2192. },
  2193. series: [{
  2194. name: "May",
  2195. data: [37, 35, 44, 28, 36, 24, 65, 31, 37, 39, 62, 51, 35, 41, 35, 27, 93, 53, 61, 27, 54, 43, 4, 46, 39, 62, 51, 35, 41, 67]
  2196. },{
  2197. name: "April",
  2198. data: [93, 54, 51, 24, 35, 35, 31, 67, 19, 43, 28, 36, 62, 61, 27, 39, 35, 41, 27, 35, 51, 46, 62, 37, 44, 53, 41, 65, 39, 37]
  2199. }],
  2200. tooltip: {
  2201. theme: 'dark'
  2202. },
  2203. grid: {
  2204. strokeDashArray: 4,
  2205. },
  2206. xaxis: {
  2207. labels: {
  2208. padding: 0,
  2209. },
  2210. tooltip: {
  2211. enabled: false
  2212. },
  2213. type: 'datetime',
  2214. },
  2215. yaxis: {
  2216. labels: {
  2217. padding: 4
  2218. },
  2219. },
  2220. labels: [
  2221. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  2222. ],
  2223. colors: [tabler.getColor("primary"), tabler.getColor("gray-600")],
  2224. legend: {
  2225. show: false,
  2226. },
  2227. })).render();
  2228. });
  2229. // @formatter:on
  2230. </script>
  2231. <script>
  2232. // @formatter:off
  2233. document.addEventListener("DOMContentLoaded", function () {
  2234. window.ApexCharts && (new ApexCharts(document.getElementById('chart-active-users'), {
  2235. chart: {
  2236. type: "bar",
  2237. fontFamily: 'inherit',
  2238. height: 40.0,
  2239. sparkline: {
  2240. enabled: true
  2241. },
  2242. animations: {
  2243. enabled: false
  2244. },
  2245. },
  2246. plotOptions: {
  2247. bar: {
  2248. columnWidth: '50%',
  2249. }
  2250. },
  2251. dataLabels: {
  2252. enabled: false,
  2253. },
  2254. fill: {
  2255. opacity: 1,
  2256. },
  2257. series: [{
  2258. name: "Profits",
  2259. data: [37, 35, 44, 28, 36, 24, 65, 31, 37, 39, 62, 51, 35, 41, 35, 27, 93, 53, 61, 27, 54, 43, 19, 46, 39, 62, 51, 35, 41, 67]
  2260. }],
  2261. tooltip: {
  2262. theme: 'dark'
  2263. },
  2264. grid: {
  2265. strokeDashArray: 4,
  2266. },
  2267. xaxis: {
  2268. labels: {
  2269. padding: 0,
  2270. },
  2271. tooltip: {
  2272. enabled: false
  2273. },
  2274. axisBorder: {
  2275. show: false,
  2276. },
  2277. type: 'datetime',
  2278. },
  2279. yaxis: {
  2280. labels: {
  2281. padding: 4
  2282. },
  2283. },
  2284. labels: [
  2285. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  2286. ],
  2287. colors: [tabler.getColor("primary")],
  2288. legend: {
  2289. show: false,
  2290. },
  2291. })).render();
  2292. });
  2293. // @formatter:on
  2294. </script>
  2295. <script>
  2296. // @formatter:off
  2297. document.addEventListener("DOMContentLoaded", function () {
  2298. window.ApexCharts && (new ApexCharts(document.getElementById('chart-mentions'), {
  2299. chart: {
  2300. type: "bar",
  2301. fontFamily: 'inherit',
  2302. height: 240,
  2303. parentHeightOffset: 0,
  2304. toolbar: {
  2305. show: false,
  2306. },
  2307. animations: {
  2308. enabled: false
  2309. },
  2310. stacked: true,
  2311. },
  2312. plotOptions: {
  2313. bar: {
  2314. columnWidth: '50%',
  2315. }
  2316. },
  2317. dataLabels: {
  2318. enabled: false,
  2319. },
  2320. fill: {
  2321. opacity: 1,
  2322. },
  2323. series: [{
  2324. name: "Web",
  2325. data: [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 12, 5, 8, 22, 6, 8, 6, 4, 1, 8, 24, 29, 51, 40, 47, 23, 26, 50, 26, 41, 22, 46, 47, 81, 46, 6]
  2326. },{
  2327. name: "Social",
  2328. data: [2, 5, 4, 3, 3, 1, 4, 7, 5, 1, 2, 5, 3, 2, 6, 7, 7, 1, 5, 5, 2, 12, 4, 6, 18, 3, 5, 2, 13, 15, 20, 47, 18, 15, 11, 10, 0]
  2329. },{
  2330. name: "Other",
  2331. data: [2, 9, 1, 7, 8, 3, 6, 5, 5, 4, 6, 4, 1, 9, 3, 6, 7, 5, 2, 8, 4, 9, 1, 2, 6, 7, 5, 1, 8, 3, 2, 3, 4, 9, 7, 1, 6]
  2332. }],
  2333. tooltip: {
  2334. theme: 'dark'
  2335. },
  2336. grid: {
  2337. padding: {
  2338. top: -20,
  2339. right: 0,
  2340. left: -4,
  2341. bottom: -4
  2342. },
  2343. strokeDashArray: 4,
  2344. xaxis: {
  2345. lines: {
  2346. show: true
  2347. }
  2348. },
  2349. },
  2350. xaxis: {
  2351. labels: {
  2352. padding: 0,
  2353. },
  2354. tooltip: {
  2355. enabled: false
  2356. },
  2357. axisBorder: {
  2358. show: false,
  2359. },
  2360. type: 'datetime',
  2361. },
  2362. yaxis: {
  2363. labels: {
  2364. padding: 4
  2365. },
  2366. },
  2367. labels: [
  2368. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19', '2020-07-20', '2020-07-21', '2020-07-22', '2020-07-23', '2020-07-24', '2020-07-25', '2020-07-26'
  2369. ],
  2370. colors: [tabler.getColor("primary"), tabler.getColor("primary", 0.8), tabler.getColor("green", 0.8)],
  2371. legend: {
  2372. show: false,
  2373. },
  2374. })).render();
  2375. });
  2376. // @formatter:on
  2377. </script>
  2378. <script>
  2379. // @formatter:on
  2380. document.addEventListener("DOMContentLoaded", function() {
  2381. const map = new jsVectorMap({
  2382. selector: '#map-world',
  2383. map: 'world',
  2384. backgroundColor: 'transparent',
  2385. regionStyle: {
  2386. initial: {
  2387. fill: tabler.getColor('body-bg'),
  2388. stroke: tabler.getColor('border-color'),
  2389. strokeWidth: 2,
  2390. }
  2391. },
  2392. zoomOnScroll: false,
  2393. zoomButtons: false,
  2394. // -------- Series --------
  2395. visualizeData: {
  2396. scale: [tabler.getColor('bg-surface'), tabler.getColor('primary')],
  2397. values: { "AF": 16, "AL": 11, "DZ": 158, "AO": 85, "AG": 1, "AR": 351, "AM": 8, "AU": 1219, "AT": 366, "AZ": 52, "BS": 7, "BH": 21, "BD": 105, "BB": 3, "BY": 52, "BE": 461, "BZ": 1, "BJ": 6, "BT": 1, "BO": 19, "BA": 16, "BW": 12, "BR": 2023, "BN": 11, "BG": 44, "BF": 8, "BI": 1, "KH": 11, "CM": 21, "CA": 1563, "CV": 1, "CF": 2, "TD": 7, "CL": 199, "CN": 5745, "CO": 283, "KM": 0, "CD": 12, "CG": 11, "CR": 35, "CI": 22, "HR": 59, "CY": 22, "CZ": 195, "DK": 304, "DJ": 1, "DM": 0, "DO": 50, "EC": 61, "EG": 216, "SV": 21, "GQ": 14, "ER": 2, "EE": 19, "ET": 30, "FJ": 3, "FI": 231, "FR": 2555, "GA": 12, "GM": 1, "GE": 11, "DE": 3305, "GH": 18, "GR": 305, "GD": 0, "GT": 40, "GN": 4, "GW": 0, "GY": 2, "HT": 6, "HN": 15, "HK": 226, "HU": 132, "IS": 12, "IN": 1430, "ID": 695, "IR": 337, "IQ": 84, "IE": 204, "IL": 201, "IT": 2036, "JM": 13, "JP": 5390, "JO": 27, "KZ": 129, "KE": 32, "KI": 0, "KR": 986, "KW": 117, "KG": 4, "LA": 6, "LV": 23, "LB": 39, "LS": 1, "LR": 0, "LY": 77, "LT": 35, "LU": 52, "MK": 9, "MG": 8, "MW": 5, "MY": 218, "MV": 1, "ML": 9, "MT": 7, "MR": 3, "MU": 9, "MX": 1004, "MD": 5, "MN": 5, "ME": 3, "MA": 91, "MZ": 10, "MM": 35, "NA": 11, "NP": 15, "NL": 770, "NZ": 138, "NI": 6, "NE": 5, "NG": 206, "NO": 413, "OM": 53, "PK": 174, "PA": 27, "PG": 8, "PY": 17, "PE": 153, "PH": 189, "PL": 438, "PT": 223, "QA": 126, "RO": 158, "RU": 1476, "RW": 5, "WS": 0, "ST": 0, "SA": 434, "SN": 12, "RS": 38, "SC": 0, "SL": 1, "SG": 217, "SK": 86, "SI": 46, "SB": 0, "ZA": 354, "ES": 1374, "LK": 48, "KN": 0, "LC": 1, "VC": 0, "SD": 65, "SR": 3, "SZ": 3, "SE": 444, "CH": 522, "SY": 59, "TW": 426, "TJ": 5, "TZ": 22, "TH": 312, "TL": 0, "TG": 3, "TO": 0, "TT": 21, "TN": 43, "TR": 729, "TM": 0, "UG": 17, "UA": 136, "AE": 239, "GB": 2258, "US": 4624, "UY": 40, "UZ": 37, "VU": 0, "VE": 285, "VN": 101, "YE": 30, "ZM": 15, "ZW": 5 },
  2398. },
  2399. });
  2400. window.addEventListener("resize", () => {
  2401. map.updateSize();
  2402. });
  2403. });
  2404. // @formatter:off
  2405. </script>
  2406. <script>
  2407. // @formatter:off
  2408. document.addEventListener("DOMContentLoaded", function () {
  2409. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-activity'), {
  2410. chart: {
  2411. type: "radialBar",
  2412. fontFamily: 'inherit',
  2413. height: 40,
  2414. width: 40,
  2415. animations: {
  2416. enabled: false
  2417. },
  2418. sparkline: {
  2419. enabled: true
  2420. },
  2421. },
  2422. tooltip: {
  2423. enabled: false,
  2424. },
  2425. plotOptions: {
  2426. radialBar: {
  2427. hollow: {
  2428. margin: 0,
  2429. size: '75%'
  2430. },
  2431. track: {
  2432. margin: 0
  2433. },
  2434. dataLabels: {
  2435. show: false
  2436. }
  2437. }
  2438. },
  2439. colors: [tabler.getColor("blue")],
  2440. series: [35],
  2441. })).render();
  2442. });
  2443. // @formatter:on
  2444. </script>
  2445. <script>
  2446. // @formatter:off
  2447. document.addEventListener("DOMContentLoaded", function () {
  2448. window.ApexCharts && (new ApexCharts(document.getElementById('chart-development-activity'), {
  2449. chart: {
  2450. type: "area",
  2451. fontFamily: 'inherit',
  2452. height: 192,
  2453. sparkline: {
  2454. enabled: true
  2455. },
  2456. animations: {
  2457. enabled: false
  2458. },
  2459. },
  2460. dataLabels: {
  2461. enabled: false,
  2462. },
  2463. fill: {
  2464. opacity: .16,
  2465. type: 'solid'
  2466. },
  2467. stroke: {
  2468. width: 2,
  2469. lineCap: "round",
  2470. curve: "smooth",
  2471. },
  2472. series: [{
  2473. name: "Purchases",
  2474. data: [3, 5, 4, 6, 7, 5, 6, 8, 24, 7, 12, 5, 6, 3, 8, 4, 14, 30, 17, 19, 15, 14, 25, 32, 40, 55, 60, 48, 52, 70]
  2475. }],
  2476. tooltip: {
  2477. theme: 'dark'
  2478. },
  2479. grid: {
  2480. strokeDashArray: 4,
  2481. },
  2482. xaxis: {
  2483. labels: {
  2484. padding: 0,
  2485. },
  2486. tooltip: {
  2487. enabled: false
  2488. },
  2489. axisBorder: {
  2490. show: false,
  2491. },
  2492. type: 'datetime',
  2493. },
  2494. yaxis: {
  2495. labels: {
  2496. padding: 4
  2497. },
  2498. },
  2499. labels: [
  2500. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  2501. ],
  2502. colors: [tabler.getColor("primary")],
  2503. legend: {
  2504. show: false,
  2505. },
  2506. point: {
  2507. show: false
  2508. },
  2509. })).render();
  2510. });
  2511. // @formatter:on
  2512. </script>
  2513. <script>
  2514. // @formatter:off
  2515. document.addEventListener("DOMContentLoaded", function () {
  2516. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-1'), {
  2517. chart: {
  2518. type: "line",
  2519. fontFamily: 'inherit',
  2520. height: 24,
  2521. animations: {
  2522. enabled: false
  2523. },
  2524. sparkline: {
  2525. enabled: true
  2526. },
  2527. },
  2528. tooltip: {
  2529. enabled: false,
  2530. },
  2531. stroke: {
  2532. width: 2,
  2533. lineCap: "round",
  2534. },
  2535. series: [{
  2536. color: tabler.getColor("primary"),
  2537. data: [17, 24, 20, 10, 5, 1, 4, 18, 13]
  2538. }],
  2539. })).render();
  2540. });
  2541. // @formatter:on
  2542. </script>
  2543. <script>
  2544. // @formatter:off
  2545. document.addEventListener("DOMContentLoaded", function () {
  2546. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-2'), {
  2547. chart: {
  2548. type: "line",
  2549. fontFamily: 'inherit',
  2550. height: 24,
  2551. animations: {
  2552. enabled: false
  2553. },
  2554. sparkline: {
  2555. enabled: true
  2556. },
  2557. },
  2558. tooltip: {
  2559. enabled: false,
  2560. },
  2561. stroke: {
  2562. width: 2,
  2563. lineCap: "round",
  2564. },
  2565. series: [{
  2566. color: tabler.getColor("primary"),
  2567. data: [13, 11, 19, 22, 12, 7, 14, 3, 21]
  2568. }],
  2569. })).render();
  2570. });
  2571. // @formatter:on
  2572. </script>
  2573. <script>
  2574. // @formatter:off
  2575. document.addEventListener("DOMContentLoaded", function () {
  2576. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-3'), {
  2577. chart: {
  2578. type: "line",
  2579. fontFamily: 'inherit',
  2580. height: 24,
  2581. animations: {
  2582. enabled: false
  2583. },
  2584. sparkline: {
  2585. enabled: true
  2586. },
  2587. },
  2588. tooltip: {
  2589. enabled: false,
  2590. },
  2591. stroke: {
  2592. width: 2,
  2593. lineCap: "round",
  2594. },
  2595. series: [{
  2596. color: tabler.getColor("primary"),
  2597. data: [10, 13, 10, 4, 17, 3, 23, 22, 19]
  2598. }],
  2599. })).render();
  2600. });
  2601. // @formatter:on
  2602. </script>
  2603. <script>
  2604. // @formatter:off
  2605. document.addEventListener("DOMContentLoaded", function () {
  2606. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-4'), {
  2607. chart: {
  2608. type: "line",
  2609. fontFamily: 'inherit',
  2610. height: 24,
  2611. animations: {
  2612. enabled: false
  2613. },
  2614. sparkline: {
  2615. enabled: true
  2616. },
  2617. },
  2618. tooltip: {
  2619. enabled: false,
  2620. },
  2621. stroke: {
  2622. width: 2,
  2623. lineCap: "round",
  2624. },
  2625. series: [{
  2626. color: tabler.getColor("primary"),
  2627. data: [6, 15, 13, 13, 5, 7, 17, 20, 19]
  2628. }],
  2629. })).render();
  2630. });
  2631. // @formatter:on
  2632. </script>
  2633. <script>
  2634. // @formatter:off
  2635. document.addEventListener("DOMContentLoaded", function () {
  2636. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-5'), {
  2637. chart: {
  2638. type: "line",
  2639. fontFamily: 'inherit',
  2640. height: 24,
  2641. animations: {
  2642. enabled: false
  2643. },
  2644. sparkline: {
  2645. enabled: true
  2646. },
  2647. },
  2648. tooltip: {
  2649. enabled: false,
  2650. },
  2651. stroke: {
  2652. width: 2,
  2653. lineCap: "round",
  2654. },
  2655. series: [{
  2656. color: tabler.getColor("primary"),
  2657. data: [2, 11, 15, 14, 21, 20, 8, 23, 18, 14]
  2658. }],
  2659. })).render();
  2660. });
  2661. // @formatter:on
  2662. </script>
  2663. <script>
  2664. // @formatter:off
  2665. document.addEventListener("DOMContentLoaded", function () {
  2666. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-6'), {
  2667. chart: {
  2668. type: "line",
  2669. fontFamily: 'inherit',
  2670. height: 24,
  2671. animations: {
  2672. enabled: false
  2673. },
  2674. sparkline: {
  2675. enabled: true
  2676. },
  2677. },
  2678. tooltip: {
  2679. enabled: false,
  2680. },
  2681. stroke: {
  2682. width: 2,
  2683. lineCap: "round",
  2684. },
  2685. series: [{
  2686. color: tabler.getColor("primary"),
  2687. data: [22, 12, 7, 14, 3, 21, 8, 23, 18, 14]
  2688. }],
  2689. })).render();
  2690. });
  2691. // @formatter:on
  2692. </script>
  2693. </body>
  2694. </html>