tasks.html 93 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223
  1. <!doctype html>
  2. <!--
  3. * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
  4. * @version 1.0.0-beta14
  5. * @link https://tabler.io
  6. * Copyright 2018-2022 The Tabler Authors
  7. * Copyright 2018-2022 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>Tasks - 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?1666304673" rel="stylesheet"/>
  18. <link href="./dist/css/tabler-flags.min.css?1666304673" rel="stylesheet"/>
  19. <link href="./dist/css/tabler-payments.min.css?1666304673" rel="stylesheet"/>
  20. <link href="./dist/css/tabler-vendors.min.css?1666304673" rel="stylesheet"/>
  21. <link href="./dist/css/demo.min.css?1666304673" rel="stylesheet"/>
  22. <style>
  23. @import url('https://rsms.me/inter/inter.css');
  24. :root {
  25. --tblr-font-sans-serif: Inter, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  26. }
  27. </style>
  28. </head>
  29. <body >
  30. <script src="./dist/js/demo-theme.min.js?1666304673"></script>
  31. <div class="page">
  32. <!-- Navbar -->
  33. <header class="navbar navbar-expand-md navbar-light d-print-none">
  34. <div class="container-xl">
  35. <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar-menu">
  36. <span class="navbar-toggler-icon"></span>
  37. </button>
  38. <h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
  39. <a href=".">
  40. <img src="./static/logo.svg" width="110" height="32" alt="Tabler" class="navbar-brand-image">
  41. </a>
  42. </h1>
  43. <div class="navbar-nav flex-row order-md-last">
  44. <div class="nav-item d-none d-md-flex me-3">
  45. <div class="btn-list">
  46. <a href="https://github.com/tabler/tabler" class="btn" target="_blank" rel="noreferrer">
  47. <!-- Download SVG icon from http://tabler-icons.io/i/brand-github -->
  48. <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>
  49. Source code
  50. </a>
  51. <a href="https://github.com/sponsors/codecalm" class="btn" target="_blank" rel="noreferrer">
  52. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  53. <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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  54. Sponsor
  55. </a>
  56. </div>
  57. </div>
  58. <div class="d-none d-md-flex">
  59. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  60. data-bs-placement="bottom">
  61. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  62. <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>
  63. </a>
  64. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  65. data-bs-placement="bottom">
  66. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  67. <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"/><circle cx="12" cy="12" r="4" /><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>
  68. </a>
  69. <div class="nav-item dropdown d-none d-md-flex me-3">
  70. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  71. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  72. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 5a2 2 0 0 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6" /><path d="M9 17v1a3 3 0 0 0 6 0v-1" /></svg>
  73. <span class="badge bg-red"></span>
  74. </a>
  75. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  76. <div class="card">
  77. <div class="card-header">
  78. <h3 class="card-title">Last updates</h3>
  79. </div>
  80. <div class="list-group list-group-flush list-group-hoverable">
  81. <div class="list-group-item">
  82. <div class="row align-items-center">
  83. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  84. <div class="col text-truncate">
  85. <a href="#" class="text-body d-block">Example 1</a>
  86. <div class="d-block text-muted text-truncate mt-n1">
  87. Change deprecated html tags to text decoration classes (#29604)
  88. </div>
  89. </div>
  90. <div class="col-auto">
  91. <a href="#" class="list-group-item-actions">
  92. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  93. <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>
  94. </a>
  95. </div>
  96. </div>
  97. </div>
  98. <div class="list-group-item">
  99. <div class="row align-items-center">
  100. <div class="col-auto"><span class="status-dot d-block"></span></div>
  101. <div class="col text-truncate">
  102. <a href="#" class="text-body d-block">Example 2</a>
  103. <div class="d-block text-muted text-truncate mt-n1">
  104. justify-content:between ⇒ justify-content:space-between (#29734)
  105. </div>
  106. </div>
  107. <div class="col-auto">
  108. <a href="#" class="list-group-item-actions show">
  109. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  110. <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>
  111. </a>
  112. </div>
  113. </div>
  114. </div>
  115. <div class="list-group-item">
  116. <div class="row align-items-center">
  117. <div class="col-auto"><span class="status-dot d-block"></span></div>
  118. <div class="col text-truncate">
  119. <a href="#" class="text-body d-block">Example 3</a>
  120. <div class="d-block text-muted text-truncate mt-n1">
  121. Update change-version.js (#29736)
  122. </div>
  123. </div>
  124. <div class="col-auto">
  125. <a href="#" class="list-group-item-actions">
  126. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  127. <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>
  128. </a>
  129. </div>
  130. </div>
  131. </div>
  132. <div class="list-group-item">
  133. <div class="row align-items-center">
  134. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  135. <div class="col text-truncate">
  136. <a href="#" class="text-body d-block">Example 4</a>
  137. <div class="d-block text-muted text-truncate mt-n1">
  138. Regenerate package-lock.json (#29730)
  139. </div>
  140. </div>
  141. <div class="col-auto">
  142. <a href="#" class="list-group-item-actions">
  143. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  144. <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>
  145. </a>
  146. </div>
  147. </div>
  148. </div>
  149. </div>
  150. </div>
  151. </div>
  152. </div>
  153. </div>
  154. <div class="nav-item dropdown">
  155. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  156. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  157. <div class="d-none d-xl-block ps-2">
  158. <div>Paweł Kuna</div>
  159. <div class="mt-1 small text-muted">UI Designer</div>
  160. </div>
  161. </a>
  162. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
  163. <a href="#" class="dropdown-item">Status</a>
  164. <a href="#" class="dropdown-item">Profile</a>
  165. <a href="#" class="dropdown-item">Feedback</a>
  166. <div class="dropdown-divider"></div>
  167. <a href="./settings.html" class="dropdown-item">Settings</a>
  168. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  169. </div>
  170. </div>
  171. </div>
  172. </div>
  173. </header>
  174. <div class="navbar-expand-md">
  175. <div class="collapse navbar-collapse" id="navbar-menu">
  176. <div class="navbar navbar-light">
  177. <div class="container-xl">
  178. <ul class="navbar-nav">
  179. <li class="nav-item">
  180. <a class="nav-link" href="./index.html" >
  181. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/home -->
  182. <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"/><polyline points="5 12 3 12 12 3 21 12 19 12" /><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>
  183. </span>
  184. <span class="nav-link-title">
  185. Home
  186. </span>
  187. </a>
  188. </li>
  189. <li class="nav-item dropdown">
  190. <a class="nav-link dropdown-toggle" href="#navbar-base" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  191. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/package -->
  192. <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"/><polyline points="12 3 20 7.5 20 16.5 12 21 4 16.5 4 7.5 12 3" /><line x1="12" y1="12" x2="20" y2="7.5" /><line x1="12" y1="12" x2="12" y2="21" /><line x1="12" y1="12" x2="4" y2="7.5" /><line x1="16" y1="5.25" x2="8" y2="9.75" /></svg>
  193. </span>
  194. <span class="nav-link-title">
  195. Interface
  196. </span>
  197. </a>
  198. <div class="dropdown-menu">
  199. <div class="dropdown-menu-columns">
  200. <div class="dropdown-menu-column">
  201. <a class="dropdown-item" href="./empty.html">
  202. Empty page
  203. </a>
  204. <a class="dropdown-item" href="./accordion.html">
  205. Accordion
  206. </a>
  207. <a class="dropdown-item" href="./blank.html">
  208. Blank page
  209. </a>
  210. <a class="dropdown-item" href="./buttons.html">
  211. Buttons
  212. </a>
  213. <div class="dropend">
  214. <a class="dropdown-item dropdown-toggle" href="#sidebar-cards" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  215. Cards
  216. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  217. </a>
  218. <div class="dropdown-menu">
  219. <a href="./cards.html" class="dropdown-item">
  220. Sample cards
  221. </a>
  222. <a href="./card-actions.html" class="dropdown-item">
  223. Card actions
  224. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  225. </a>
  226. <a href="./cards-masonry.html" class="dropdown-item">
  227. Cards Masonry
  228. </a>
  229. </div>
  230. </div>
  231. <a class="dropdown-item" href="./colors.html">
  232. Colors
  233. </a>
  234. <a class="dropdown-item" href="./datagrid.html">
  235. Data grid
  236. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  237. </a>
  238. <a class="dropdown-item" href="./datatables.html">
  239. Datatables
  240. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  241. </a>
  242. <a class="dropdown-item" href="./dropdowns.html">
  243. Dropdowns
  244. </a>
  245. <a class="dropdown-item" href="./modals.html">
  246. Modals
  247. </a>
  248. <a class="dropdown-item" href="./maps.html">
  249. Maps
  250. </a>
  251. <a class="dropdown-item" href="./map-fullsize.html">
  252. Map fullsize
  253. </a>
  254. <a class="dropdown-item" href="./maps-vector.html">
  255. Vector maps
  256. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  257. </a>
  258. <a class="dropdown-item" href="./navigation.html">
  259. Navigation
  260. </a>
  261. <a class="dropdown-item" href="./charts.html">
  262. Charts
  263. </a>
  264. </div>
  265. <div class="dropdown-menu-column">
  266. <a class="dropdown-item" href="./pagination.html">
  267. <!-- Download SVG icon from http://tabler-icons.io/i/pie-chart -->
  268. Pagination
  269. </a>
  270. <a class="dropdown-item" href="./placeholder.html">
  271. Placeholder
  272. </a>
  273. <a class="dropdown-item" href="./tabs.html">
  274. Tabs
  275. </a>
  276. <a class="dropdown-item" href="./tables.html">
  277. Tables
  278. </a>
  279. <a class="dropdown-item" href="./carousel.html">
  280. Carousel
  281. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  282. </a>
  283. <a class="dropdown-item" href="./lists.html">
  284. Lists
  285. </a>
  286. <a class="dropdown-item" href="./typography.html">
  287. Typography
  288. </a>
  289. <a class="dropdown-item" href="./offcanvas.html">
  290. Offcanvas
  291. </a>
  292. <a class="dropdown-item" href="./markdown.html">
  293. Markdown
  294. </a>
  295. <a class="dropdown-item" href="./dropzone.html">
  296. Dropzone
  297. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  298. </a>
  299. <a class="dropdown-item" href="./lightbox.html">
  300. Lightbox
  301. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  302. </a>
  303. <a class="dropdown-item" href="./tinymce.html">
  304. TinyMCE
  305. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  306. </a>
  307. <a class="dropdown-item" href="./inline-player.html">
  308. Inline player
  309. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  310. </a>
  311. <div class="dropend">
  312. <a class="dropdown-item dropdown-toggle" href="#sidebar-authentication" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  313. Authentication
  314. </a>
  315. <div class="dropdown-menu">
  316. <a href="./sign-in.html" class="dropdown-item">
  317. Sign in
  318. </a>
  319. <a href="./sign-in-illustration.html" class="dropdown-item">
  320. Sign in with illustration
  321. </a>
  322. <a href="./sign-in-cover.html" class="dropdown-item">
  323. Sign in with cover
  324. </a>
  325. <a href="./sign-up.html" class="dropdown-item">
  326. Sign up
  327. </a>
  328. <a href="./forgot-password.html" class="dropdown-item">
  329. Forgot password
  330. </a>
  331. <a href="./terms-of-service.html" class="dropdown-item">
  332. Terms of service
  333. </a>
  334. <a href="./auth-lock.html" class="dropdown-item">
  335. Lock screen
  336. </a>
  337. </div>
  338. </div>
  339. <div class="dropend">
  340. <a class="dropdown-item dropdown-toggle" href="#sidebar-error" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  341. <!-- Download SVG icon from http://tabler-icons.io/i/file-minus -->
  342. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-inline me-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M14 3v4a1 1 0 0 0 1 1h4" /><path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" /><line x1="9" y1="14" x2="15" y2="14" /></svg>
  343. Error pages
  344. </a>
  345. <div class="dropdown-menu">
  346. <a href="./error-404.html" class="dropdown-item">
  347. 404 page
  348. </a>
  349. <a href="./error-500.html" class="dropdown-item">
  350. 500 page
  351. </a>
  352. <a href="./error-maintenance.html" class="dropdown-item">
  353. Maintenance page
  354. </a>
  355. </div>
  356. </div>
  357. </div>
  358. </div>
  359. </div>
  360. </li>
  361. <li class="nav-item">
  362. <a class="nav-link" href="./form-elements.html" >
  363. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/checkbox -->
  364. <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"/><polyline points="9 11 12 14 20 6" /><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>
  365. </span>
  366. <span class="nav-link-title">
  367. Form elements
  368. </span>
  369. </a>
  370. </li>
  371. <li class="nav-item active dropdown">
  372. <a class="nav-link dropdown-toggle" href="#navbar-extra" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  373. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  374. <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>
  375. </span>
  376. <span class="nav-link-title">
  377. Extra
  378. </span>
  379. </a>
  380. <div class="dropdown-menu">
  381. <div class="dropdown-menu-columns">
  382. <div class="dropdown-menu-column">
  383. <a class="dropdown-item" href="./activity.html">
  384. Activity
  385. </a>
  386. <a class="dropdown-item" href="./gallery.html">
  387. Gallery
  388. </a>
  389. <a class="dropdown-item" href="./invoice.html">
  390. Invoice
  391. </a>
  392. <a class="dropdown-item" href="./search-results.html">
  393. Search results
  394. </a>
  395. <a class="dropdown-item" href="./pricing.html">
  396. Pricing cards
  397. </a>
  398. <a class="dropdown-item" href="./pricing-table.html">
  399. Pricing table
  400. </a>
  401. <a class="dropdown-item" href="./faq.html">
  402. FAQ
  403. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  404. </a>
  405. <a class="dropdown-item" href="./users.html">
  406. Users
  407. </a>
  408. <a class="dropdown-item" href="./license.html">
  409. License
  410. </a>
  411. </div>
  412. <div class="dropdown-menu-column">
  413. <a class="dropdown-item" href="./logs.html">
  414. Logs
  415. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  416. </a>
  417. <a class="dropdown-item" href="./music.html">
  418. Music
  419. </a>
  420. <a class="dropdown-item active" href="./tasks.html">
  421. Tasks
  422. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  423. </a>
  424. <a class="dropdown-item" href="./uptime.html">
  425. Uptime monitor
  426. </a>
  427. <a class="dropdown-item" href="./widgets.html">
  428. Widgets
  429. </a>
  430. <a class="dropdown-item" href="./wizard.html">
  431. Wizard
  432. </a>
  433. <a class="dropdown-item" href="./settings.html">
  434. Settings
  435. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  436. </a>
  437. <a class="dropdown-item" href="./job-listing.html">
  438. Job listing
  439. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  440. </a>
  441. </div>
  442. </div>
  443. </div>
  444. </li>
  445. <li class="nav-item dropdown">
  446. <a class="nav-link dropdown-toggle" href="#navbar-layout" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  447. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/layout-2 -->
  448. <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"/><rect x="4" y="4" width="6" height="5" rx="2" /><rect x="4" y="13" width="6" height="7" rx="2" /><rect x="14" y="4" width="6" height="7" rx="2" /><rect x="14" y="15" width="6" height="5" rx="2" /></svg>
  449. </span>
  450. <span class="nav-link-title">
  451. Layout
  452. </span>
  453. </a>
  454. <div class="dropdown-menu">
  455. <div class="dropdown-menu-columns">
  456. <div class="dropdown-menu-column">
  457. <a class="dropdown-item" href="./layout-horizontal.html">
  458. Horizontal
  459. </a>
  460. <a class="dropdown-item" href="./layout-boxed.html">
  461. Boxed
  462. <span class="badge badge-sm bg-green text-uppercase ms-2">New</span>
  463. </a>
  464. <a class="dropdown-item" href="./layout-vertical.html">
  465. Vertical
  466. </a>
  467. <a class="dropdown-item" href="./layout-vertical-transparent.html">
  468. Vertical transparent
  469. </a>
  470. <a class="dropdown-item" href="./layout-vertical-right.html">
  471. Right vertical
  472. </a>
  473. <a class="dropdown-item" href="./layout-condensed.html">
  474. Condensed
  475. </a>
  476. <a class="dropdown-item" href="./layout-combo.html">
  477. Combined
  478. </a>
  479. </div>
  480. <div class="dropdown-menu-column">
  481. <a class="dropdown-item" href="./layout-navbar-dark.html">
  482. Navbar dark
  483. </a>
  484. <a class="dropdown-item" href="./layout-navbar-sticky.html">
  485. Navbar sticky
  486. </a>
  487. <a class="dropdown-item" href="./layout-navbar-overlap.html">
  488. Navbar overlap
  489. </a>
  490. <a class="dropdown-item" href="./layout-rtl.html">
  491. RTL mode
  492. </a>
  493. <a class="dropdown-item" href="./layout-fluid.html">
  494. Fluid
  495. </a>
  496. <a class="dropdown-item" href="./layout-fluid-vertical.html">
  497. Fluid vertical
  498. </a>
  499. </div>
  500. </div>
  501. </div>
  502. </li>
  503. <li class="nav-item">
  504. <a class="nav-link" href="./icons.html" >
  505. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/ghost -->
  506. <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" /><line x1="10" y1="10" x2="10.01" y2="10" /><line x1="14" y1="10" x2="14.01" y2="10" /><path d="M10 14a3.5 3.5 0 0 0 4 0" /></svg>
  507. </span>
  508. <span class="nav-link-title">
  509. 2853 icons
  510. </span>
  511. </a>
  512. </li>
  513. <li class="nav-item dropdown">
  514. <a class="nav-link dropdown-toggle" href="#navbar-help" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  515. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/lifebuoy -->
  516. <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"/><circle cx="12" cy="12" r="4" /><circle cx="12" cy="12" r="9" /><line x1="15" y1="15" x2="18.35" y2="18.35" /><line x1="9" y1="15" x2="5.65" y2="18.35" /><line x1="5.65" y1="5.65" x2="9" y2="9" /><line x1="18.35" y1="5.65" x2="15" y2="9" /></svg>
  517. </span>
  518. <span class="nav-link-title">
  519. Help
  520. </span>
  521. </a>
  522. <div class="dropdown-menu">
  523. <a class="dropdown-item" href="./docs/index.html">
  524. Documentation
  525. </a>
  526. <a class="dropdown-item" href="./changelog.html">
  527. Changelog
  528. </a>
  529. <a class="dropdown-item" href="https://github.com/tabler/tabler" target="_blank" rel="noopener">
  530. Source code
  531. </a>
  532. <a class="dropdown-item text-pink" href="https://github.com/sponsors/codecalm" target="_blank" rel="noopener">
  533. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  534. <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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  535. Sponsor project!
  536. </a>
  537. </div>
  538. </li>
  539. </ul>
  540. <div class="my-2 my-md-0 flex-grow-1 flex-md-grow-0 order-first order-md-last">
  541. <form action="./" method="get" autocomplete="off" novalidate>
  542. <div class="input-icon">
  543. <span class="input-icon-addon">
  544. <!-- Download SVG icon from http://tabler-icons.io/i/search -->
  545. <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"/><circle cx="10" cy="10" r="7" /><line x1="21" y1="21" x2="15" y2="15" /></svg>
  546. </span>
  547. <input type="text" value="" class="form-control" placeholder="Search…" aria-label="Search in website">
  548. </div>
  549. </form>
  550. </div>
  551. </div>
  552. </div>
  553. </div>
  554. </div>
  555. <div class="page-wrapper">
  556. <!-- Page header -->
  557. <div class="page-header d-print-none">
  558. <div class="container-xl">
  559. <div class="row g-2 align-items-center">
  560. <div class="col">
  561. <h2 class="page-title">
  562. Tabler Inc. Tasks
  563. </h2>
  564. </div>
  565. <!-- Page title actions -->
  566. <div class="col-12 col-md-auto ms-auto d-print-none">
  567. <a href="#" class="btn btn-primary">
  568. <!-- Download SVG icon from http://tabler-icons.io/i/plus -->
  569. <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"/><line x1="12" y1="5" x2="12" y2="19" /><line x1="5" y1="12" x2="19" y2="12" /></svg>
  570. Add board
  571. </a>
  572. </div>
  573. </div>
  574. </div>
  575. </div>
  576. <!-- Page body -->
  577. <div class="page-body">
  578. <div class="container-xl">
  579. <ul class="nav nav-bordered mb-4">
  580. <li class="nav-item">
  581. <a class="nav-link active" aria-current="page" href="#">View all</a>
  582. </li>
  583. <li class="nav-item">
  584. <a class="nav-link" href="#">Marketing</a>
  585. </li>
  586. <li class="nav-item">
  587. <a class="nav-link" href="#">Development</a>
  588. </li>
  589. </ul>
  590. <div class="row">
  591. <div class="col-12 col-md-6 col-lg">
  592. <h2 class="mb-3">To Do</h2>
  593. <div class="mb-4">
  594. <div class="row row-cards">
  595. <div class="col-12">
  596. <div class="card card-sm">
  597. <div class="card-body">
  598. <h3 class="card-title">Enable analytics tracking</h3>
  599. <div class="ratio ratio-16x9">
  600. <img src="./static/projects/dashboard-1.png" class="rounded object-cover" alt="Enable analytics tracking">
  601. </div>
  602. <div class="mt-4">
  603. <div class="row">
  604. <div class="col">
  605. <div class="avatar-list avatar-list-stacked">
  606. <span class="avatar avatar-xs avatar-rounded">EP</span>
  607. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/002f.jpg)"></span>
  608. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/003f.jpg)"></span>
  609. <span class="avatar avatar-xs avatar-rounded">HS</span>
  610. </div>
  611. </div>
  612. <div class="col-auto text-muted">
  613. <button class="switch-icon switch-icon-scale" data-bs-toggle="switch-icon">
  614. <span class="switch-icon-a text-muted">
  615. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  616. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  617. </span>
  618. <span class="switch-icon-b text-red">
  619. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  620. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  621. </span>
  622. </button>
  623. 7
  624. </div>
  625. <div class="col-auto">
  626. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/message -->
  627. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><line x1="8" y1="9" x2="16" y2="9" /><line x1="8" y1="13" x2="14" y2="13" /></svg>
  628. 2</a>
  629. </div>
  630. <div class="col-auto">
  631. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  632. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  633. </a>
  634. </div>
  635. </div>
  636. </div>
  637. </div>
  638. </div>
  639. </div>
  640. <div class="col-12">
  641. <div class="card card-sm">
  642. <div class="card-body">
  643. <h3 class="card-title">User should receive a daily digest email</h3>
  644. <div class="text-muted">Dedicated form for a category of users that will perform actions.</div>
  645. <div class="mt-4">
  646. <div class="row">
  647. <div class="col">
  648. <div class="avatar-list avatar-list-stacked">
  649. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/000f.jpg)"></span>
  650. </div>
  651. </div>
  652. <div class="col-auto">
  653. <a href="#" class="link-warning">
  654. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  655. <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"/><rect x="4" y="5" width="16" height="16" rx="2" /><line x1="16" y1="3" x2="16" y2="7" /><line x1="8" y1="3" x2="8" y2="7" /><line x1="4" y1="11" x2="20" y2="11" /><line x1="11" y1="15" x2="12" y2="15" /><line x1="12" y1="15" x2="12" y2="18" /></svg>
  656. 10 Sep
  657. </a>
  658. </div>
  659. <div class="col-auto text-muted">
  660. <button class="switch-icon switch-icon-scale" data-bs-toggle="switch-icon">
  661. <span class="switch-icon-a text-muted">
  662. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  663. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  664. </span>
  665. <span class="switch-icon-b text-red">
  666. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  667. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  668. </span>
  669. </button>
  670. 6
  671. </div>
  672. <div class="col-auto">
  673. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  674. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  675. </a>
  676. </div>
  677. </div>
  678. </div>
  679. </div>
  680. </div>
  681. </div>
  682. <div class="col-12">
  683. <div class="card card-sm">
  684. <div class="card-status-top bg-yellow"></div>
  685. <div class="card-body">
  686. <h3 class="card-title">Change license and remove references to products</h3>
  687. <div class="mt-4">
  688. <div class="row">
  689. <div class="col">
  690. </div>
  691. <div class="col-auto text-muted">
  692. <button class="switch-icon switch-icon-scale active" data-bs-toggle="switch-icon">
  693. <span class="switch-icon-a text-muted">
  694. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  695. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  696. </span>
  697. <span class="switch-icon-b text-red">
  698. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  699. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  700. </span>
  701. </button>
  702. 34
  703. </div>
  704. <div class="col-auto">
  705. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/message -->
  706. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><line x1="8" y1="9" x2="16" y2="9" /><line x1="8" y1="13" x2="14" y2="13" /></svg>
  707. 4</a>
  708. </div>
  709. <div class="col-auto">
  710. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  711. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  712. </a>
  713. </div>
  714. </div>
  715. </div>
  716. </div>
  717. </div>
  718. </div>
  719. </div>
  720. </div>
  721. </div>
  722. <div class="col-12 col-md-6 col-lg">
  723. <h2 class="mb-3">In Progress</h2>
  724. <div class="mb-4">
  725. <div class="row row-cards">
  726. <div class="col-12">
  727. <div class="card card-sm">
  728. <div class="card-status-top bg-green"></div>
  729. <div class="card-body">
  730. <h3 class="card-title">Write a release note for Admin v1.0</h3>
  731. <div class="mt-4">
  732. <div class="row">
  733. <div class="col">
  734. </div>
  735. <div class="col-auto text-muted">
  736. <button class="switch-icon switch-icon-scale" data-bs-toggle="switch-icon">
  737. <span class="switch-icon-a text-muted">
  738. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  739. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  740. </span>
  741. <span class="switch-icon-b text-red">
  742. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  743. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  744. </span>
  745. </button>
  746. </div>
  747. <div class="col-auto">
  748. <a href="#" class="link-muted">
  749. <!-- Download SVG icon from http://tabler-icons.io/i/activity -->
  750. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 12h4l3 8l4 -16l3 8h4" /></svg>
  751. 1/3
  752. </a>
  753. </div>
  754. <div class="col-auto">
  755. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/message -->
  756. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><line x1="8" y1="9" x2="16" y2="9" /><line x1="8" y1="13" x2="14" y2="13" /></svg>
  757. 11</a>
  758. </div>
  759. <div class="col-auto">
  760. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  761. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  762. </a>
  763. </div>
  764. </div>
  765. </div>
  766. <div class="divide-y-2 mt-4">
  767. <div>
  768. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  769. <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="M5 12l5 5l10 -10" /></svg>
  770. <span class="text-muted text-decoration-line-through">Implement new designs</span>
  771. </div>
  772. <div>
  773. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  774. <svg xmlns="http://www.w3.org/2000/svg" class="icon 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="M5 12l5 5l10 -10" /></svg>
  775. Usability testing
  776. </div>
  777. <div>
  778. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  779. <svg xmlns="http://www.w3.org/2000/svg" class="icon 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="M5 12l5 5l10 -10" /></svg>
  780. Design navigation changes
  781. </div>
  782. </div>
  783. </div>
  784. </div>
  785. </div>
  786. <div class="col-12">
  787. <div class="card card-sm">
  788. <div class="ribbon ribbon-top ribbon-bookmark bg-yellow">
  789. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  790. <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>
  791. </div>
  792. <div class="card-body">
  793. <h3 class="card-title">Product Update - Q4 2021</h3>
  794. <div class="text-muted">Dedicated form for a category of users that will perform actions.</div>
  795. <div class="mt-4">
  796. <div class="row">
  797. <div class="col">
  798. <div class="avatar-list avatar-list-stacked">
  799. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/002f.jpg)"></span>
  800. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/003f.jpg)"></span>
  801. </div>
  802. </div>
  803. <div class="col-auto text-muted">
  804. <button class="switch-icon switch-icon-scale" data-bs-toggle="switch-icon">
  805. <span class="switch-icon-a text-muted">
  806. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  807. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  808. </span>
  809. <span class="switch-icon-b text-red">
  810. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  811. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  812. </span>
  813. </button>
  814. 11
  815. </div>
  816. <div class="col-auto">
  817. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/message -->
  818. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><line x1="8" y1="9" x2="16" y2="9" /><line x1="8" y1="13" x2="14" y2="13" /></svg>
  819. 6</a>
  820. </div>
  821. <div class="col-auto">
  822. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  823. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  824. </a>
  825. </div>
  826. </div>
  827. </div>
  828. </div>
  829. </div>
  830. </div>
  831. <div class="col-12">
  832. <div class="card card-sm">
  833. <div class="card-body">
  834. <h3 class="card-title">Code HTML email template for welcome email</h3>
  835. <div class="ratio ratio-16x9">
  836. <img src="./static/projects/dashboard-3.png" class="rounded object-cover" alt="Code HTML email template for welcome email">
  837. </div>
  838. <div class="mt-4">
  839. <div class="row">
  840. <div class="col">
  841. </div>
  842. <div class="col-auto text-muted">
  843. <button class="switch-icon switch-icon-scale" data-bs-toggle="switch-icon">
  844. <span class="switch-icon-a text-muted">
  845. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  846. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  847. </span>
  848. <span class="switch-icon-b text-red">
  849. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  850. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  851. </span>
  852. </button>
  853. </div>
  854. <div class="col-auto">
  855. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/message -->
  856. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><line x1="8" y1="9" x2="16" y2="9" /><line x1="8" y1="13" x2="14" y2="13" /></svg>
  857. 11</a>
  858. </div>
  859. <div class="col-auto">
  860. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  861. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  862. </a>
  863. </div>
  864. </div>
  865. </div>
  866. </div>
  867. </div>
  868. </div>
  869. </div>
  870. </div>
  871. </div>
  872. <div class="col-12 col-md-6 col-lg">
  873. <h2 class="mb-3">Test</h2>
  874. <div class="mb-4">
  875. <div class="row row-cards">
  876. <div class="col-12">
  877. <div class="card card-sm">
  878. <div class="card-status-top bg-red"></div>
  879. <div class="card-body">
  880. <h3 class="card-title">Design new diagrams</h3>
  881. <div class="mt-4">
  882. <div class="row">
  883. <div class="col">
  884. <div class="avatar-list avatar-list-stacked">
  885. <span class="avatar avatar-xs avatar-rounded">HS</span>
  886. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/006m.jpg)"></span>
  887. </div>
  888. </div>
  889. <div class="col-auto text-muted">
  890. <button class="switch-icon switch-icon-scale" data-bs-toggle="switch-icon">
  891. <span class="switch-icon-a text-muted">
  892. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  893. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  894. </span>
  895. <span class="switch-icon-b text-red">
  896. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  897. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  898. </span>
  899. </button>
  900. 6
  901. </div>
  902. <div class="col-auto">
  903. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/message -->
  904. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><line x1="8" y1="9" x2="16" y2="9" /><line x1="8" y1="13" x2="14" y2="13" /></svg>
  905. 9</a>
  906. </div>
  907. <div class="col-auto">
  908. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  909. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  910. </a>
  911. </div>
  912. </div>
  913. </div>
  914. </div>
  915. </div>
  916. </div>
  917. <div class="col-12">
  918. <div class="card card-sm">
  919. <div class="card-body">
  920. <h3 class="card-title">Improve animation loader</h3>
  921. <div class="ratio ratio-16x9">
  922. <img src="./static/projects/dashboard-2.png" class="rounded object-cover" alt="Improve animation loader">
  923. </div>
  924. <div class="mt-4">
  925. <div class="row">
  926. <div class="col">
  927. <div class="avatar-list avatar-list-stacked">
  928. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/004f.jpg)"></span>
  929. </div>
  930. </div>
  931. <div class="col-auto text-muted">
  932. <button class="switch-icon switch-icon-scale active" data-bs-toggle="switch-icon">
  933. <span class="switch-icon-a text-muted">
  934. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  935. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  936. </span>
  937. <span class="switch-icon-b text-red">
  938. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  939. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  940. </span>
  941. </button>
  942. 5
  943. </div>
  944. <div class="col-auto">
  945. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/message -->
  946. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><line x1="8" y1="9" x2="16" y2="9" /><line x1="8" y1="13" x2="14" y2="13" /></svg>
  947. 6</a>
  948. </div>
  949. <div class="col-auto">
  950. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  951. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  952. </a>
  953. </div>
  954. </div>
  955. </div>
  956. </div>
  957. </div>
  958. </div>
  959. <div class="col-12">
  960. <div class="card card-sm">
  961. <div class="card-body">
  962. <h3 class="card-title">iOS App home page</h3>
  963. <div class="mt-4">
  964. <div class="row">
  965. <div class="col">
  966. <div class="avatar-list avatar-list-stacked">
  967. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/002m.jpg)"></span>
  968. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/003m.jpg)"></span>
  969. </div>
  970. </div>
  971. <div class="col-auto text-muted">
  972. <button class="switch-icon switch-icon-scale" data-bs-toggle="switch-icon">
  973. <span class="switch-icon-a text-muted">
  974. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  975. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  976. </span>
  977. <span class="switch-icon-b text-red">
  978. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  979. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  980. </span>
  981. </button>
  982. </div>
  983. <div class="col-auto">
  984. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  985. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  986. </a>
  987. </div>
  988. </div>
  989. </div>
  990. </div>
  991. </div>
  992. </div>
  993. <div class="col-12">
  994. <div class="card card-sm">
  995. <div class="card-status-top bg-blue"></div>
  996. <div class="card-body">
  997. <h3 class="card-title">Changelog 1.7</h3>
  998. <div class="mt-4">
  999. <div class="row">
  1000. <div class="col">
  1001. </div>
  1002. <div class="col-auto">
  1003. <a href="#" class="link-warning">
  1004. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1005. <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"/><rect x="4" y="5" width="16" height="16" rx="2" /><line x1="16" y1="3" x2="16" y2="7" /><line x1="8" y1="3" x2="8" y2="7" /><line x1="4" y1="11" x2="20" y2="11" /><line x1="11" y1="15" x2="12" y2="15" /><line x1="12" y1="15" x2="12" y2="18" /></svg>
  1006. 10 Jan
  1007. </a>
  1008. </div>
  1009. <div class="col-auto text-muted">
  1010. <button class="switch-icon switch-icon-scale" data-bs-toggle="switch-icon">
  1011. <span class="switch-icon-a text-muted">
  1012. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1013. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  1014. </span>
  1015. <span class="switch-icon-b text-red">
  1016. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1017. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  1018. </span>
  1019. </button>
  1020. </div>
  1021. <div class="col-auto">
  1022. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1023. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /><line x1="8" y1="9" x2="16" y2="9" /><line x1="8" y1="13" x2="14" y2="13" /></svg>
  1024. 6</a>
  1025. </div>
  1026. <div class="col-auto">
  1027. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  1028. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  1029. </a>
  1030. </div>
  1031. </div>
  1032. </div>
  1033. </div>
  1034. </div>
  1035. </div>
  1036. </div>
  1037. </div>
  1038. </div>
  1039. <div class="col-12 col-md-6 col-lg">
  1040. <h2 class="mb-3">Completed</h2>
  1041. <div class="mb-4">
  1042. <div class="row row-cards">
  1043. <div class="col-12">
  1044. <div class="card card-sm">
  1045. <div class="card-body">
  1046. <h3 class="card-title">Enable analytics tracking</h3>
  1047. <div class="mt-4">
  1048. <div class="row">
  1049. <div class="col">
  1050. <div class="avatar-list avatar-list-stacked">
  1051. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/002f.jpg)"></span>
  1052. </div>
  1053. </div>
  1054. <div class="col-auto text-muted">
  1055. <button class="switch-icon switch-icon-scale" data-bs-toggle="switch-icon">
  1056. <span class="switch-icon-a text-muted">
  1057. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1058. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  1059. </span>
  1060. <span class="switch-icon-b text-red">
  1061. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1062. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  1063. </span>
  1064. </button>
  1065. 1
  1066. </div>
  1067. <div class="col-auto">
  1068. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  1069. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  1070. </a>
  1071. </div>
  1072. </div>
  1073. </div>
  1074. </div>
  1075. </div>
  1076. </div>
  1077. <div class="col-12">
  1078. <div class="card card-sm">
  1079. <div class="card-body">
  1080. <h3 class="card-title">Coordinate with business development</h3>
  1081. <div class="text-muted">This content is a little bit longer.</div>
  1082. <div class="mt-4">
  1083. <div class="row">
  1084. <div class="col">
  1085. <div class="avatar-list avatar-list-stacked">
  1086. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/000m.jpg)"></span>
  1087. <span class="avatar avatar-xs avatar-rounded">JL</span>
  1088. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/002m.jpg)"></span>
  1089. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/003m.jpg)"></span>
  1090. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/000f.jpg)"></span>
  1091. </div>
  1092. </div>
  1093. <div class="col-auto text-muted">
  1094. <button class="switch-icon switch-icon-scale active" data-bs-toggle="switch-icon">
  1095. <span class="switch-icon-a text-muted">
  1096. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1097. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  1098. </span>
  1099. <span class="switch-icon-b text-red">
  1100. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1101. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  1102. </span>
  1103. </button>
  1104. 7
  1105. </div>
  1106. <div class="col-auto">
  1107. <a href="#" class="link-muted">
  1108. <!-- Download SVG icon from http://tabler-icons.io/i/activity -->
  1109. <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 12h4l3 8l4 -16l3 8h4" /></svg>
  1110. 1/3
  1111. </a>
  1112. </div>
  1113. <div class="col-auto">
  1114. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  1115. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  1116. </a>
  1117. </div>
  1118. </div>
  1119. </div>
  1120. <div class="divide-y-2 mt-4">
  1121. <div>
  1122. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1123. <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="M5 12l5 5l10 -10" /></svg>
  1124. <span class="text-muted text-decoration-line-through">Find out the old contract documents</span>
  1125. </div>
  1126. <div>
  1127. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1128. <svg xmlns="http://www.w3.org/2000/svg" class="icon 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="M5 12l5 5l10 -10" /></svg>
  1129. Organize meeting sales associates to understand need in detail
  1130. </div>
  1131. <div>
  1132. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1133. <svg xmlns="http://www.w3.org/2000/svg" class="icon 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="M5 12l5 5l10 -10" /></svg>
  1134. Make sure to cover every small details
  1135. </div>
  1136. </div>
  1137. </div>
  1138. </div>
  1139. </div>
  1140. <div class="col-12">
  1141. <div class="card card-sm">
  1142. <div class="card-body">
  1143. <h3 class="card-title">Managing teams</h3>
  1144. <div class="text-muted">Publishing industries for previewing layouts and visual <a href="#">#family</a> 🔥</div>
  1145. <div class="mt-4">
  1146. <div class="row">
  1147. <div class="col">
  1148. <div class="avatar-list avatar-list-stacked">
  1149. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/006m.jpg)"></span>
  1150. <span class="avatar avatar-xs avatar-rounded" style="background-image: url(./static/avatars/004f.jpg)"></span>
  1151. </div>
  1152. </div>
  1153. <div class="col-auto text-muted">
  1154. <button class="switch-icon switch-icon-scale" data-bs-toggle="switch-icon">
  1155. <span class="switch-icon-a text-muted">
  1156. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1157. <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="M19.5 12.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  1158. </span>
  1159. <span class="switch-icon-b text-red">
  1160. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1161. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" 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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  1162. </span>
  1163. </button>
  1164. 4
  1165. </div>
  1166. <div class="col-auto">
  1167. <a href="#" class="link-muted"><!-- Download SVG icon from http://tabler-icons.io/i/share -->
  1168. <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"/><circle cx="6" cy="12" r="3" /><circle cx="18" cy="6" r="3" /><circle cx="18" cy="18" r="3" /><line x1="8.7" y1="10.7" x2="15.3" y2="7.3" /><line x1="8.7" y1="13.3" x2="15.3" y2="16.7" /></svg>
  1169. </a>
  1170. </div>
  1171. </div>
  1172. </div>
  1173. </div>
  1174. </div>
  1175. </div>
  1176. </div>
  1177. </div>
  1178. </div>
  1179. </div>
  1180. </div>
  1181. </div>
  1182. <footer class="footer footer-transparent d-print-none">
  1183. <div class="container-xl">
  1184. <div class="row text-center align-items-center flex-row-reverse">
  1185. <div class="col-lg-auto ms-lg-auto">
  1186. <ul class="list-inline list-inline-dots mb-0">
  1187. <li class="list-inline-item"><a href="./docs/index.html" class="link-secondary">Documentation</a></li>
  1188. <li class="list-inline-item"><a href="./license.html" class="link-secondary">License</a></li>
  1189. <li class="list-inline-item"><a href="https://github.com/tabler/tabler" target="_blank" class="link-secondary" rel="noopener">Source code</a></li>
  1190. <li class="list-inline-item">
  1191. <a href="https://github.com/sponsors/codecalm" target="_blank" class="link-secondary" rel="noopener">
  1192. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1193. <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.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  1194. Sponsor
  1195. </a>
  1196. </li>
  1197. </ul>
  1198. </div>
  1199. <div class="col-12 col-lg-auto mt-3 mt-lg-0">
  1200. <ul class="list-inline list-inline-dots mb-0">
  1201. <li class="list-inline-item">
  1202. Copyright &copy; 2022
  1203. <a href="." class="link-secondary">Tabler</a>.
  1204. All rights reserved.
  1205. </li>
  1206. <li class="list-inline-item">
  1207. <a href="./changelog.html" class="link-secondary" rel="noopener">
  1208. v1.0.0-beta14
  1209. </a>
  1210. </li>
  1211. </ul>
  1212. </div>
  1213. </div>
  1214. </div>
  1215. </footer>
  1216. </div>
  1217. </div>
  1218. <!-- Libs JS -->
  1219. <!-- Tabler Core -->
  1220. <script src="./dist/js/tabler.min.js?1666304673" defer></script>
  1221. <script src="./dist/js/demo.min.js?1666304673" defer></script>
  1222. </body>
  1223. </html>