LoginComponent

Now that our RegisterComponent is ready, we need to find a proper way to tell that to our users. A good place to start might be adding a Don't have an account? Click here to create one! link in the LoginComponent. Open the login.component.html file and add the following:

[...]<div class="login-link">    <a href="#">        Forgot the password?    </a></div><div class="login-link">    <a [routerLink]="['/register']">        Don't have an account? Click here to create one!    </a></div>[...]

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.