-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f59781
commit 19968b6
Showing
6 changed files
with
79 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Todo Project | ||
|
||
<p>This project is created using Angular 5. It will help you create an new todo list and separate todo tasks for each list. The logic for authentication and adding new name to a list is still not in place but you can add using the + button. You can go past the login form by entering any details to get to the list</p> | ||
|
||
## Steps to install | ||
|
||
1. Git clone the repo and `cd` into it. | ||
2. Run `npm install` and `npm start` to run the project | ||
3. Start creating the todo lists and tasks, deleting and updating. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
import { Component, OnInit, OnDestroy } from '@angular/core'; | ||
|
||
import { Component, OnInit, OnDestroy } from "@angular/core"; | ||
|
||
@Component({ | ||
selector: 'app-login', | ||
templateUrl: './login.component.html', | ||
styleUrls: ['./login.component.scss'] | ||
selector: "app-login", | ||
templateUrl: "./login.component.html", | ||
styleUrls: ["./login.component.scss"] | ||
}) | ||
export class LoginComponent implements OnInit { | ||
constructor() {} | ||
|
||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} | ||
ngOnInit() {} | ||
} |