{"id":15102576,"url":"https://github.com/hey-its-d2t2/futureintern_jd_5","last_synced_at":"2026-01-19T00:32:05.996Z","repository":{"id":255657901,"uuid":"851554196","full_name":"hey-its-d2t2/Futureintern_JD_5","owner":"hey-its-d2t2","description":"Password Generator is a web application designed as part of Task 5 for my Future Intern internship. This project focuses on creating a versatile and user-friendly tool for generating strong, secure passwords. The application features customizable options and real-time validation, aiming to enhance security and user experience.","archived":false,"fork":false,"pushed_at":"2024-09-13T08:28:34.000Z","size":60454,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T11:42:06.000Z","etag":null,"topics":["aws-ec2","css","devtools","git","github","html","java","js","maven","mobaxterm","password-generator","springboot","thymeleaf"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hey-its-d2t2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-03T10:00:08.000Z","updated_at":"2024-09-13T08:28:38.000Z","dependencies_parsed_at":"2024-09-13T18:49:28.801Z","dependency_job_id":null,"html_url":"https://github.com/hey-its-d2t2/Futureintern_JD_5","commit_stats":null,"previous_names":["hey-its-d2t2/futureintern_jd_5"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hey-its-d2t2%2FFutureintern_JD_5","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hey-its-d2t2%2FFutureintern_JD_5/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hey-its-d2t2%2FFutureintern_JD_5/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hey-its-d2t2%2FFutureintern_JD_5/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hey-its-d2t2","download_url":"https://codeload.github.com/hey-its-d2t2/Futureintern_JD_5/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247332524,"owners_count":20921852,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws-ec2","css","devtools","git","github","html","java","js","maven","mobaxterm","password-generator","springboot","thymeleaf"],"created_at":"2024-09-25T19:02:30.644Z","updated_at":"2026-01-19T00:32:05.961Z","avatar_url":"https://github.com/hey-its-d2t2.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Password Generator\n\n**Password Generator** is a web application designed as part of Task 5 for my Future Intern internship. This project focuses on creating a versatile and user-friendly tool for generating strong, secure passwords. The application features customizable options and real-time validation, aiming to enhance security and user experience.\n\n## Tech Stack\n\n- **Frontend**:\n  - HTML\n  - CSS (Tailwind CSS)\n  - JavaScript\n\n- **Backend**:\n  - Java\n  - Spring Boot\n\n- **Others**:\n  - Thymeleaf (for templating)\n  - Maven (for project management)\n\n## Features\n\n- **Dynamic Typing Text**: Engages users with a stylish animated typing effect.\n- **Customizable Password Generation**: Options to specify password length, quantity, and include various character types (numbers, lowercase letters, uppercase letters, symbols).\n- **Real-time Validation**: Ensures form fields are correctly filled, including at least one selected checkbox and a maximum limit of 10 passwords.\n- **Responsive Design**: The application is designed to be fully responsive and functional across all device sizes.\n- **Reset Functionality**: Clears all checkboxes, removes generated passwords, and resets form fields to default values.\n- **Copy to Clipboard**: Allows users to easily copy generated passwords.\n\n## Usage\n\n1. **Generate Passwords**\n   - Enter the desired password length and quantity.\n   - Select the options for including numbers, lowercase letters, uppercase letters, and symbols.\n   - Click \"Generate Passwords\" to create the passwords.\n\n2. **Reset Form**\n   - Click \"Reset\" to clear all checkboxes, generated passwords, and reset the form fields to default values.\n\n3. **Copy Passwords**\n   - Use the \"Copy\" button next to a generated password to copy it to the clipboard.\n\n## UI Screenshot\n\n![Password-generator](https://github.com/user-attachments/assets/99bcd930-94ad-49e4-8ee8-0926ac5fb74d)\n\n\n## API Endpoints\n\n### Generate Passwords\n\n**POST** `/password/generate`\n\n- **Request Body**: \n  ```json\n  {\n    \"length\": 12,\n    \"quantity\": 3,\n    \"includeNumbers\": true,\n    \"includeLowercase\": true,\n    \"includeUppercase\": true,\n    \"includeSymbols\": true,\n    \"noSimilarChars\": false,\n    \"noDuplicateChars\": false,\n    \"noSequentialChars\": false\n  }\n\n- **Response**:\n  ```json\n  [\n  \"A1b2C3d4E5fG6\",\n  \"H7i8J9kL0mN1O\",\n  \"P2q3R4s5T6uV7\"\n  ]\n\n## Installation\n- **1 .Clone the Repository**\n\n```\ngit clone https://github.com/hey-its-d2t2/Futureintern_JD_5.git\ncd Futureintern_JD_5\n```\n-  **2. Set Up the Backend**\n    - Navigate to the backend directory and build the Spring Boot application.\n```\ncd backend\n./mvnw spring-boot:run\n```\n- **3. Set Up the Frontend**\n\nOpen the following url your browser to view the application.\n```\nhttp://localhost:8080/password\n```\n## Development\nTo contribute to this project or make modifications, please follow these guidelines:\n  - Ensure code adheres to project standards.\n  - Include appropriate tests for new features.\n  - Submit pull requests with detailed descriptions of changes.\n\n### Acknowledgements\n- **Tailwind CSS:** For providing beautiful and responsive UI components.\n- **Spring Boot:** For enabling robust backend development.\n- **Thymeleaf:** For effective templating.\n\n## Contact\nFor any questions or feedback, please contact me at deepsinghkumar01@gmail.com.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhey-its-d2t2%2Ffutureintern_jd_5","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhey-its-d2t2%2Ffutureintern_jd_5","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhey-its-d2t2%2Ffutureintern_jd_5/lists"}