layout-navbar-sticky.html 148 KB

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