How To Create Simple Login Page In Angular

Creating a simple login page in Angular can be a great way to add authentication to your web application. In this article, I will walk you through the process of building a basic login page using Angular. I will also share some of my personal insights and tips along the way.

Getting Started

First, make sure you have Angular CLI installed on your system. You can check this by running the following command in your terminal:

ng --version

If you don’t have Angular CLI installed, you can install it by running the following command:

npm install -g @angular/cli

Once you have Angular CLI installed, you can create a new Angular project by running the following command:

ng new my-login-app

After the project is created, navigate to the project directory by running:

cd my-login-app

Creating the Login Component

Now that we have our project set up, let’s create a new component for our login page. Run the following command to generate a new component:

ng generate component login

This command will create a new folder named “login” with all the necessary files for our login component.

Open the newly created “login.component.html” file and add the following code:

<h2>Login</h2>
<form>
<div>
<label for="username">Username:</label>
<input type="text" id="username" name="username">
</div>
<div>
<label for="password">Password:</label>
<input type="password" id="password" name="password">
</div>
<button type="submit">Login</button>
</form>

This is a basic login form with two input fields for username and password. We also have a submit button to trigger the login functionality.

Adding Authentication Service

In order to handle the login functionality, we need to create an authentication service. Run the following command to generate a new service:

ng generate service auth

This command will create a new file named “auth.service.ts” in the “src/app” directory. Open this file and add the following code:

import { Injectable } from '@angular/core';

@Injectable({
providedIn: 'root'
})
export class AuthService {
constructor() { }

login(username: string, password: string): boolean {
// Add your authentication logic here
return true; // Replace this with your actual authentication logic
}
}

Now we have a basic authentication service with a login method. Make sure to replace the placeholder authentication logic with your actual implementation.

Implementing Login Functionality

To implement the login functionality, open the “login.component.ts” file and add the following code:

import { Component } from '@angular/core';
import { AuthService } from '../auth.service';

@Component({
selector: 'app-login',
templateUrl: './login.component.html',
styleUrls: ['./login.component.css']
})
export class LoginComponent {
constructor(private authService: AuthService) { }

login(username: string, password: string): void {
const isLoggedIn = this.authService.login(username, password);
if (isLoggedIn) {
console.log('Login successful');
// Redirect to the desired page
} else {
console.log('Login failed');
// Show error message
}
}
}

In the above code, we inject the AuthService into the LoginComponent and call the login method when the form is submitted. If the login is successful, we log a success message and redirect the user to the desired page. Otherwise, we log a failure message and display an error message to the user.

Conclusion

Creating a simple login page in Angular is essential for adding authentication to your web application. In this article, we covered the steps to create a basic login form using Angular CLI, generate a login component, create an authentication service, and implement the login functionality.

Remember to customize the authentication logic in the AuthService to fit your specific requirements. With this foundation, you can expand your login page with additional features such as password recovery, social login, and more.

Now that you have a solid understanding of how to create a simple login page in Angular, you can further explore Angular’s capabilities to build more advanced authentication systems.

For more information, you can check out the official Angular documentation on Angular Forms and Angular Router.