├── Dashboard.html ├── LICENSE └── README.md /Dashboard.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 51 | 52 | 53 | 54 | 55 | 129 | 130 |
131 | 135 | 136 | 149 | 150 | 158 |
159 | 160 |
161 |
162 |
163 |
164 |
165 |
166 | User Management 167 |
168 |
169 | 170 | 187 |
188 |
189 | 190 |
191 |
192 |
193 |
194 | Product Management 195 |
196 |
197 | 215 |
216 |
217 |
218 | 219 |
220 |
221 |
222 |
223 |
224 | Brand Management 225 |
226 |
227 | 228 | 246 |
247 |
248 | 249 |
250 |
251 |
252 |
253 | Category Management 254 |
255 |
256 | 273 |
274 |
275 |
276 | 277 |
278 | 279 | add 280 | 281 | 282 | 303 |
304 |
305 | 306 | 328 | 329 | 330 | 331 | 332 | 339 | 340 | 341 | 342 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016-2018 Tirth Patel 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mDash 2 | Material Design Admin Dashboard with Materialize Framework and Google's Material Icons. 3 | 4 | Demo : http://codepen.io/T-P/full/MyNjOO/ 5 | 6 | ![ ](https://i.imgur.com/rP468wd.png) 7 | 8 | ![ ](https://i.imgur.com/KBMTjC7.png) 9 | 10 | ## Credits 11 | + Gif Logo made using Form Type Maker from romannurik 12 | 13 | + Icons by [Google](https://material.io/icons/) 14 | 15 | ## License 16 | Copyright (c) 2016-2018 Tirth Patel 17 | 18 | This code is distributed under [MIT license](https://github.com/piedcipher/mDash/blob/master/LICENSE). 19 | --------------------------------------------------------------------------------