Create Course page design

The Create Course page is located inside the dashboard, i.e., only authenticated and authorized users will have access to this page after logging in. This page will have a form that we’ll use to create the details of the courses for the course management application.

We can begin the design for the Create Course page by following the steps below:

Step 1: Generate the create-course component

We can do this using the Angular CLI by running the command below:

ng generate component components/create-course

Our folder structure should look like this:

src > app > components > create-course

Inside of the create-course folder, we have the following files generated by the Angular CLI:

  • create-course.component.css
  • create-course.component.html
  • create-course.component.spec.ts
  • create-course.component.ts

Get hands-on with 1200+ tech skills courses.