Angular 5 material design => http://alteymeigrob.nnmcloud.ru/d?s=YToyOntzOjc6InJlZmVyZXIiO3M6MjE6Imh0dHA6Ly9iaXRiaW4uaXQyX2RsLyI7czozOiJrZXkiO3M6MjU6IkFuZ3VsYXIgNSBtYXRlcmlhbCBkZXNpZ24iO30= You can also join the community on GitHub and Slack for further support and guide in tweaking it for your project. The template is fully responsive and clean on every device and on every modern browser. Pero, no sólo eso también aprenderemos a utilizar los componentes de Material Design para acelerar nuestro desarrollo. I doubt many people care to take time helping you if you don't want to spend the time to make a clean presentation. Necesitamos que más jóvenes continúen preparándose para hacer juntos un futuro mejor. Tecnology evolves very fast and this brings new possibilities and improvements that we, as developers, should consider. Su experiencia incluye, Tecnologías Web, Sistemas de Gestión de Contenido de código abierto, Tecnologías y bibliotecas de front-end, Task Runners. If you haven't, use the following command to install it globally. This bug is being solved i guess although i haven't found any info indicating that it's fixed in new versions of angular i haven't check 6. Heres the code so far. Every single page has its own module. The template is fully responsive and clean on every device and on every modern browser. Angular 5 Material Design & Redux Admin Template - This is what motivates us to build our templates and to share them with the Worldwide Dev Community. Angular es una muy buena opción cuando se implementan sistemas enterprise como aplicaciones de una sola página Single Page Applications ; debido a su gran cantidad de módulos out-of-the-box se ha convertido en una de las herramientas que todo Front-end Developer Profesional debería conocer y dominar. This tutorial is about creating a sample application using angular 5 material design. The app will have a login module as a landing page and after successful login user will be redirected to next module i. To design this page we will be using different angular 5 material components such as form controls, navigation menu, layout and buttons. So, following are the commands I used to set up the angular 5 Hero app. Let's start integrating material with it. Here, we will be dealing with simple material integration with angular 5. There are primarily 3 steps to configure material design. Let ''s do it step by step. Step 2 - Install Angular Theme - There are 4 themes available - deeppurple-amber. We will be using indigo-pink theme. Before using it we need to install it in our application. Creating Component in Angular 5 Since, we have login and post login module, let's create two components here - login and user using cli command. Following is the final structure. Step angular 5 material design - Material Module Configuration - Here we will be creating a separate module file to define all our material related module in one single. So, create a file named material. Now, we will start creating components using material. Routing Configuration We have our default routing configured for angular 5 material design and for post login user will be redirected to user page. Following is the routing configuration. We will be creating toolbar here for navigation. To do so, first we need to import and export MatToolbarModule in our material. To have material buttons we need buttons module imported which has been imported above. Let's clean up default settings first and add following line inside login. Following is the material toolbar that we built. Creating Form with Material Now let's create a login form. For this we require to import MatCardModule and MatInputModule. MatCardModule is a material layout and MatInputModule provides multiple input components. Add following lines in login. Once this button is clicked login will be called to validate the user. Once you add above code, you will find error as Can't bind ngModel since it isn't a known property of input because we don't have formsModule imported. Hence let's import it in app. Also, make following changes in login. Once the user is validated, he will be redirected to user page. If you have anything that you want to add or share then please share it below in the comment section.