Adding QuizEditComponent

Let's start with making our users aware that they can create their own quizzes.

Navigate to the /ClientApp/app/components/navmenu/ folder, open the navmenu.component.html file, and append the following <li> element to the end of the existing <ul> (new lines are highlighted):

[...]<ul class='nav navbar-nav'>    <li [routerLinkActive]="['link-active']">        <a [routerLink]="['/home']">            <span class='glyphicon glyphicon-home'></span> Home        </a>    </li>    <li [routerLinkActive]="['link-active']">        <a [routerLink]="['/about']">            <span class='glyphicon glyphicon-info-sign'></span> About        </a>    </li>    <li [routerLinkActive]="['link-active']">        <a [routerLink]="['/login']">            <span class='glyphicon glyphicon-log-in'></span> Login        </a>    </li>

Get ASP.NET Core 2 and Angular 5 now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.