-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix logout issue by redirecting user to login page * add todo create component * finish todo components * add task create and task list * don't allow deleting a todo if it has existing tasks * refresh todo after a delete * add error interceptor * fix active route css class * add route active class to each li * cleanup code
- Loading branch information
Showing
8 changed files
with
65 additions
and
45 deletions.
There are no files selected for viewing
25 changes: 0 additions & 25 deletions
25
todo-client/projects/auth/src/lib/components/login/login.component.spec.ts
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Empty file.
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,15 +1,19 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-home', | ||
templateUrl: './home.component.html', | ||
styleUrls: ['./home.component.scss'] | ||
selector: 'app-home', | ||
template: ` | ||
<div class="row text-center"> | ||
<div class="col-md-12"> | ||
<h2 class="">Welcome to Todozz App!</h2> | ||
<p>Here you can manage your Todo Lists in a breeze!</p> | ||
</div> | ||
</div> | ||
` | ||
}) | ||
export class HomeComponent implements OnInit { | ||
constructor() {} | ||
|
||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
ngOnInit() {} | ||
} |
Empty file.
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