{"id":20049845,"url":"https://github.com/biplobpustcse/angular-15-login-app","last_synced_at":"2025-07-13T17:40:02.290Z","repository":{"id":170379325,"uuid":"602244681","full_name":"biplobpustcse/Angular-15-Login-App","owner":"biplobpustcse","description":"Login App with Angular 15.1.5","archived":false,"fork":false,"pushed_at":"2023-02-21T18:29:54.000Z","size":244,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T08:29:36.910Z","etag":null,"topics":["angular","nodejs","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/biplobpustcse.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":"2023-02-15T19:55:29.000Z","updated_at":"2023-02-15T20:05:42.000Z","dependencies_parsed_at":"2023-07-10T17:45:21.053Z","dependency_job_id":null,"html_url":"https://github.com/biplobpustcse/Angular-15-Login-App","commit_stats":null,"previous_names":["biplobpustcse/angular-15-login-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/biplobpustcse/Angular-15-Login-App","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biplobpustcse%2FAngular-15-Login-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biplobpustcse%2FAngular-15-Login-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biplobpustcse%2FAngular-15-Login-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biplobpustcse%2FAngular-15-Login-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/biplobpustcse","download_url":"https://codeload.github.com/biplobpustcse/Angular-15-Login-App/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biplobpustcse%2FAngular-15-Login-App/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265180541,"owners_count":23723707,"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":["angular","nodejs","typescript"],"created_at":"2024-11-13T11:52:42.113Z","updated_at":"2025-07-13T17:40:02.200Z","avatar_url":"https://github.com/biplobpustcse.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Angular-15\n\nThis project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.1.5.\n\n## Development server\n\nRun `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.\n\n## Code scaffolding\n\nRun `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.\n\n## Build\n\nRun `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.\n\n## Running unit tests\n\nRun `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).\n\n## Running end-to-end tests\n\nRun `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.\n\n## Further help\n\nTo get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.\n\n## Template Driven From with validation\n```\n\u003cdiv class=\"container mt 5\"\u003e\n  \u003ch1\u003eEmployee Info\u003c/h1\u003e\n  \u003cdiv class=\"form-area\"\u003e\n    \u003cform #f=\"ngForm\" (ngSubmit)=\"addEmployee(f)\"\u003e\n      \u003cdiv class=\"form-group\"\u003e\n        \u003clabel\u003eName\u003c/label\u003e\n        \u003cinput type=\"text\" class=\"form-control is-invalid\" placeholder=\"Full Name\" name=\"fullName\" ngModel #fullName ='ngModel'\n        [ngClass]=\"{'is-invalid': fullName.touched \u0026\u0026 fullName.invalid}\"\n        minlength=\"3\"\n        maxlength=\"10\"\n        required\u003e\n        \u003cdiv class=\"alert alert-danger\" *ngIf=\"fullName.touched \u0026\u0026 fullName.errors?.required\"\u003eFull Name is required\u003c/div\u003e\n        \u003cdiv class=\"alert alert-danger\" *ngIf=\"fullName.touched \u0026\u0026 fullName.errors?.minlength\"\u003eFull Name must be at least 3 charecter\u003c/div\u003e\n      \u003c/div\u003e\n      \u003cdiv class=\"form-group\"\u003e\n        \u003clabel\u003eEmail\u003c/label\u003e\n        \u003cinput type=\"email\" class=\"form-control\" placeholder=\"email\" name=\"email\" ngModel #email=\"ngModel\"\n        [ngClass]=\"{'is-invalid': email.touched \u0026\u0026 email.invalid}\"\n        pattern=\"[a-z0-9._%+-]+@[a-z0-9.-]+\\.[a-z]{2,}$\"\n        required\u003e\n        \u003cdiv class=\"alert alert-danger\" *ngIf=\"email.touched \u0026\u0026 email.errors?.required\"\u003eEmail is required\u003c/div\u003e\n        \u003cdiv class=\"alert alert-danger\" *ngIf=\"email.touched \u0026\u0026 email.errors?.pattern\"\u003eInvalid Email\u003c/div\u003e\n      \u003c/div\u003e\n      \u003cdiv class=\"form-group\"\u003e\n        \u003clabel\u003eAddress\u003c/label\u003e\n        \u003ctextarea cols=\"30\" rows=\"10\" class=\"form-control\" placeholder=\"Address\" name=\"address\" ngModel #address=\"ngModel\"\n        [ngClass]=\"{'is-invalid': address.touched \u0026\u0026 address.invalid}\"\n        required\u003e\u003c/textarea\u003e\n        \u003cdiv class=\"alert alert-danger\" *ngIf=\"address.touched \u0026\u0026 address.errors?.required\"\u003eAddress is required\u003c/div\u003e\n      \u003c/div\u003e\n      \u003cdiv class=\"form-group\" style=\"margin-top: 10px;\"\u003e\n        \u003cbutton type=\"submit\" class=\"btn btn-primary\" [disabled]=\"f.invalid\"\u003eAdd\u003c/button\u003e\n      \u003c/div\u003e\n    \u003c/form\u003e\n  \u003c/div\u003e\n\u003c/div\u003e\n```\n\n```\naddEmployee = (formdata: NgForm) =\u003e {\n    console.log(formdata.value);\n  }\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbiplobpustcse%2Fangular-15-login-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbiplobpustcse%2Fangular-15-login-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbiplobpustcse%2Fangular-15-login-app/lists"}