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>