Now UI Dashboard PRO Angular is a premium admin dashboard template designed to be beautiful and simple. It is built on top of NG Bootstrap and Angular, using Now UI Dashboard PRO and it is fully responsive. It comes with a big collections of elements that will offer you multiple possibilities to create the app that best fits your needs. It can be used to create admin panels, project management systems, web applications backend, CMS or CRM.
The product represents a big suite of front-end developer tools that can help you jump start your project. We have created it thinking about things you actually need in a dashboard. Now UI Dashboard Angular contains multiple handpicked and optimized plugins. Everything is designed to fit with one another. As you will be able to see, the dashboard you can access on Creative Tim is a customization of this product.
It comes with 5 filter colors for the sidebar (yellow
, blue
,green
,orange
,red
).
- Versions
- Demo
- Quick Start
- Documentation
- File Structure
- Browser Support
- Resources
- Reporting Issues
- Technical Support or Questions
- Licensing
- Useful Links
HTML | Angular | Vue | React |
---|---|---|---|
Quick start options:
- Buy from Creative Tim
The documentation for the Material Dashboard Pro is hosted at our website.
Within the download you'll find the following directories and files:
now-ui-dashboard-pro-angular
├── README.md
├── angular.json
├── e2e
├── package-lock.json
├── package.json
├── src
│ ├── app
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── app.component.spec.ts
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ ├── app.routing.ts
│ │ ├── components
│ │ │ ├── components.module.spec.ts
│ │ │ ├── components.module.ts
│ │ │ ├── file-input
│ │ │ │ ├── file-input.component.css
│ │ │ │ ├── file-input.component.html
│ │ │ │ ├── file-input.component.spec.ts
│ │ │ │ └── file-input.component.ts
│ │ │ ├── fixed-plugin
│ │ │ │ ├── fixed-plugin.component.css
│ │ │ │ ├── fixed-plugin.component.html
│ │ │ │ ├── fixed-plugin.component.spec.ts
│ │ │ │ └── fixed-plugin.component.ts
│ │ │ ├── footer
│ │ │ │ ├── footer.component.css
│ │ │ │ ├── footer.component.html
│ │ │ │ ├── footer.component.spec.ts
│ │ │ │ └── footer.component.ts
│ │ │ ├── image-upload
│ │ │ │ ├── image-upload.component.html
│ │ │ │ ├── image-upload.component.scss
│ │ │ │ ├── image-upload.component.spec.ts
│ │ │ │ └── image-upload.component.ts
│ │ │ ├── modal
│ │ │ │ ├── modal.component.html
│ │ │ │ ├── modal.component.scss
│ │ │ │ ├── modal.component.spec.ts
│ │ │ │ └── modal.component.ts
│ │ │ ├── navbar
│ │ │ │ ├── navbar.component.css
│ │ │ │ ├── navbar.component.html
│ │ │ │ ├── navbar.component.spec.ts
│ │ │ │ └── navbar.component.ts
│ │ │ ├── picture-upload
│ │ │ │ ├── picture-upload.component.css
│ │ │ │ ├── picture-upload.component.html
│ │ │ │ ├── picture-upload.component.spec.ts
│ │ │ │ └── picture-upload.component.ts
│ │ │ ├── sidebar
│ │ │ │ ├── sidebar.component.css
│ │ │ │ ├── sidebar.component.html
│ │ │ │ ├── sidebar.component.spec.ts
│ │ │ │ └── sidebar.component.ts
│ │ │ └── vector-map
│ │ │ ├── vector-map.component.css
│ │ │ ├── vector-map.component.html
│ │ │ ├── vector-map.component.spec.ts
│ │ │ ├── vector-map.component.ts
│ │ │ └── vector-map.service.ts
│ │ ├── layouts
│ │ │ ├── admin-layout
│ │ │ │ ├── admin-layout.component.css
│ │ │ │ ├── admin-layout.component.html
│ │ │ │ ├── admin-layout.component.spec.ts
│ │ │ │ └── admin-layout.component.ts
│ │ │ └── auth-layout
│ │ │ ├── auth-layout.component.css
│ │ │ ├── auth-layout.component.html
│ │ │ ├── auth-layout.component.spec.ts
│ │ │ └── auth-layout.component.ts
│ │ └── pages
│ │ ├── calendar
│ │ │ ├── calendar.component.css
│ │ │ ├── calendar.component.html
│ │ │ ├── calendar.component.spec.ts
│ │ │ ├── calendar.component.ts
│ │ │ ├── calendar.module.spec.ts
│ │ │ ├── calendar.module.ts
│ │ │ └── calendar.routing.ts
│ │ ├── charts
│ │ │ ├── charts.component.css
│ │ │ ├── charts.component.html
│ │ │ ├── charts.component.spec.ts
│ │ │ ├── charts.component.ts
│ │ │ ├── charts.module.spec.ts
│ │ │ ├── charts.module.ts
│ │ │ └── charts.routing.ts
│ │ ├── components
│ │ │ ├── buttons
│ │ │ │ ├── buttons.component.css
│ │ │ │ ├── buttons.component.html
│ │ │ │ ├── buttons.component.spec.ts
│ │ │ │ └── buttons.component.ts
│ │ │ ├── components.module.spec.ts
│ │ │ ├── components.module.ts
│ │ │ ├── components.routing.ts
│ │ │ ├── grid-system
│ │ │ │ ├── grid-system.component.css
│ │ │ │ ├── grid-system.component.html
│ │ │ │ ├── grid-system.component.spec.ts
│ │ │ │ └── grid-system.component.ts
│ │ │ ├── icons
│ │ │ │ ├── icons.component.css
│ │ │ │ ├── icons.component.html
│ │ │ │ ├── icons.component.spec.ts
│ │ │ │ └── icons.component.ts
│ │ │ ├── notifications
│ │ │ │ ├── notifications.component.css
│ │ │ │ ├── notifications.component.html
│ │ │ │ ├── notifications.component.spec.ts
│ │ │ │ └── notifications.component.ts
│ │ │ ├── panels
│ │ │ │ ├── panels.component.css
│ │ │ │ ├── panels.component.html
│ │ │ │ ├── panels.component.spec.ts
│ │ │ │ └── panels.component.ts
│ │ │ ├── sweet-alert
│ │ │ │ ├── sweet-alert.component.css
│ │ │ │ ├── sweet-alert.component.html
│ │ │ │ ├── sweet-alert.component.spec.ts
│ │ │ │ └── sweet-alert.component.ts
│ │ │ └── typography
│ │ │ ├── typography.component.css
│ │ │ ├── typography.component.html
│ │ │ ├── typography.component.spec.ts
│ │ │ └── typography.component.ts
│ │ ├── dashboard
│ │ │ ├── dashboard.component.css
│ │ │ ├── dashboard.component.html
│ │ │ ├── dashboard.component.spec.ts
│ │ │ ├── dashboard.component.ts
│ │ │ ├── dashboard.module.spec.ts
│ │ │ ├── dashboard.module.ts
│ │ │ └── dashboard.routing.ts
│ │ ├── forms
│ │ │ ├── extended-forms
│ │ │ │ ├── extended-forms.component.css
│ │ │ │ ├── extended-forms.component.html
│ │ │ │ ├── extended-forms.component.spec.ts
│ │ │ │ └── extended-forms.component.ts
│ │ │ ├── forms.module.spec.ts
│ │ │ ├── forms.module.ts
│ │ │ ├── forms.routing.ts
│ │ │ ├── regular-forms
│ │ │ │ ├── regular-forms.component.css
│ │ │ │ ├── regular-forms.component.html
│ │ │ │ ├── regular-forms.component.spec.ts
│ │ │ │ └── regular-forms.component.ts
│ │ │ ├── validation-forms
│ │ │ │ ├── password-validator.component.ts
│ │ │ │ ├── validation-forms.component.css
│ │ │ │ ├── validation-forms.component.html
│ │ │ │ ├── validation-forms.component.spec.ts
│ │ │ │ └── validation-forms.component.ts
│ │ │ └── wizard
│ │ │ ├── wizard.component.css
│ │ │ ├── wizard.component.html
│ │ │ ├── wizard.component.spec.ts
│ │ │ └── wizard.component.ts
│ │ ├── maps
│ │ │ ├── full-screen-maps
│ │ │ │ ├── full-screen-maps.component.css
│ │ │ │ ├── full-screen-maps.component.html
│ │ │ │ ├── full-screen-maps.component.spec.ts
│ │ │ │ └── full-screen-maps.component.ts
│ │ │ ├── google-maps
│ │ │ │ ├── google-maps.component.css
│ │ │ │ ├── google-maps.component.html
│ │ │ │ ├── google-maps.component.spec.ts
│ │ │ │ └── google-maps.component.ts
│ │ │ ├── maps.module.spec.ts
│ │ │ ├── maps.module.ts
│ │ │ ├── maps.routing.ts
│ │ │ └── vector-map
│ │ │ ├── vector-map.component.css
│ │ │ ├── vector-map.component.html
│ │ │ ├── vector-map.component.spec.ts
│ │ │ └── vector-map.component.ts
│ │ ├── pages
│ │ │ ├── lock
│ │ │ │ ├── lock.component.css
│ │ │ │ ├── lock.component.html
│ │ │ │ ├── lock.component.spec.ts
│ │ │ │ └── lock.component.ts
│ │ │ ├── login
│ │ │ │ ├── login.component.css
│ │ │ │ ├── login.component.html
│ │ │ │ ├── login.component.spec.ts
│ │ │ │ └── login.component.ts
│ │ │ ├── pages.module.spec.ts
│ │ │ ├── pages.module.ts
│ │ │ ├── pages.routing.ts
│ │ │ ├── pricing
│ │ │ │ ├── pricing.component.css
│ │ │ │ ├── pricing.component.html
│ │ │ │ ├── pricing.component.spec.ts
│ │ │ │ └── pricing.component.ts
│ │ │ ├── register
│ │ │ │ ├── register.component.css
│ │ │ │ ├── register.component.html
│ │ │ │ ├── register.component.spec.ts
│ │ │ │ └── register.component.ts
│ │ │ ├── timeline
│ │ │ │ ├── timeline.component.css
│ │ │ │ ├── timeline.component.html
│ │ │ │ ├── timeline.component.spec.ts
│ │ │ │ ├── timeline.component.ts
│ │ │ │ ├── timeline.module.spec.ts
│ │ │ │ ├── timeline.module.ts
│ │ │ │ └── timeline.routing.ts
│ │ │ └── user-profile
│ │ │ ├── user-profile.component.css
│ │ │ ├── user-profile.component.html
│ │ │ ├── user-profile.component.spec.ts
│ │ │ ├── user-profile.component.ts
│ │ │ ├── user-profile.module.spec.ts
│ │ │ ├── user-profile.module.ts
│ │ │ └── user-profile.routing.ts
│ │ ├── tables
│ │ │ ├── extended-tables
│ │ │ │ ├── extended-tables.component.css
│ │ │ │ ├── extended-tables.component.html
│ │ │ │ ├── extended-tables.component.spec.ts
│ │ │ │ └── extended-tables.component.ts
│ │ │ ├── ngx-datatable
│ │ │ │ ├── ngx-datatable.component.css
│ │ │ │ ├── ngx-datatable.component.html
│ │ │ │ ├── ngx-datatable.component.spec.ts
│ │ │ │ └── ngx-datatable.component.ts
│ │ │ ├── regular-tables
│ │ │ │ ├── regular-tables.component.css
│ │ │ │ ├── regular-tables.component.html
│ │ │ │ ├── regular-tables.component.spec.ts
│ │ │ │ └── regular-tables.component.ts
│ │ │ ├── tables.module.spec.ts
│ │ │ ├── tables.module.ts
│ │ │ └── tables.routing.ts
│ │ └── widgets
│ │ ├── widgets.component.css
│ │ ├── widgets.component.html
│ │ ├── widgets.component.spec.ts
│ │ ├── widgets.component.ts
│ │ ├── widgets.module.spec.ts
│ │ ├── widgets.module.ts
│ │ └── widgets.routing.ts
│ ├── assets
│ │ ├── demo
│ │ ├── fonts
│ │ ├── img
│ │ ├── js
│ │ └── scss
│ │ ├── now-ui-dashboard
│ │ │ ├── angular
│ │ │ ├── cards
│ │ │ ├── mixins
│ │ │ └── plugins
│ │ └── now-ui-dashboard.scss
│ ├── browserslist
│ ├── environments
│ ├── favicon.ico
│ ├── index.html
│ ├── karma.conf.js
│ ├── main.ts
│ ├── polyfills.ts
│ ├── styles.css
│ ├── test.ts
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ └── tslint.json
├── tsconfig.json
└── tslint.json
At present, we officially aim to support the last two versions of the following browsers:
- Live Preview
- Buy Page: https://www.creative-tim.com/product/now-ui-dashboard-pro-angular
- Documentation is here
- License Agreement: https://www.creative-tim.com/license
- Support: https://www.creative-tim.com/contact-us
- Issues: Github Issues Page
- Now UI Dashboard Angular - demo
We use GitHub Issues as the official bug tracker for the Now UI Dashboard Pro Angular. Here are some advices for our users that want to report an issue:
- Make sure that you are using the latest version of the Now UI Dashboard Pro Angular. Check the CHANGELOG from your dashboard on our website.
- Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
- Some issues may be browser specific, so specifying in what browser you encountered the issue might help.
If you have questions or need help integrating the product please contact us instead of opening an issue.
- Copyright 2018 Creative Tim (https://www.creative-tim.com)
- Creative Tim license
-
More products from Creative Tim
-
Freebies from Creative Tim
-
Affiliate Program (earn money)
Twitter: https://twitter.com/CreativeTim
Facebook: https://www.facebook.com/CreativeTim
Dribbble: https://dribbble.com/creativetim
Google+: https://plus.google.com/+CreativetimPage
Instagram: https://instagram.com/creativetimofficial