https://github.com/ostrynska/password-checker
https://github.com/ostrynska/password-checker
angular test-task
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ostrynska/password-checker
- Owner: Ostrynska
- Created: 2024-07-19T14:26:58.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-07-21T11:09:24.000Z (12 months ago)
- Last Synced: 2025-02-13T01:49:17.281Z (5 months ago)
- Topics: angular, test-task
- Language: TypeScript
- Homepage: https://password-checker-test.netlify.app/
- Size: 146 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Password Strength Checker
This project is an Angular application to test the strength of a password in real-time. The application provides visual feedback on the strength of the entered password based on specific criteria.
## Features
- Password input field
- Real-time password strength evaluation
- Three visual indicators showing the strength of the password
- Strength criteria:
- Only letters/digits/symbols: easy (first section red, others gray)
- Combination of letters-symbols/letters-digits/digits-symbols: medium (first two sections yellow, last one gray)
- Has letters, symbols, and numbers: strong (all sections green)
- Field is empty: all sections gray
- Password length less than 8 characters: all sections red## Setup and Installation
### Prerequisites
- Node.js (>=12.x)
- Angular CLI (>=12.x)### Installation
1. Clone the repository:
```bash
git clone https://github.com/your-username/password-strength-checker.git
2. Navigate to the project directory:
```bash
cd password-strength-checker
3. Install the dependencies:
```bash
npm install### Running the Application
To run the application locally, use the following command: ng serve.
The application will be available at http://localhost:4200.