-
Notifications
You must be signed in to change notification settings - Fork 2
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
013c39b
commit 411c5b8
Showing
13 changed files
with
1,124 additions
and
3,144 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 |
---|---|---|
@@ -1,5 +1,33 @@ | ||
# angular-8-role-based-authorization-example | ||
# Angular Role Based Authorization | ||
|
||
Angular 8 - Role Based Authorization Example with the Angular CLI | ||
<img src="/screenshots/Angular-Role-Based-Authorization-Home-Page.JPG" /> | ||
|
||
For tutorial and live demo see https://jasonwatmore.com/post/2019/08/06/angular-8-role-based-authorization-tutorial-with-example | ||
----------------------------------------------------------------------------- | ||
|
||
<img src="/screenshots/Angular-Role-Based-Authorization-User-Page.JPG" /> | ||
|
||
------------------------------------------------------------------------------ | ||
|
||
<img src="/screenshots/Angular-Role-Based-Authorization-Admin-Page.JPG" /> | ||
|
||
------------------------------------------------------------------------------ | ||
|
||
### Developpement | ||
|
||
git clone https://github.com/PranamBhat/Angular-Role-Based-Authorization.git | ||
|
||
cd Angular-Role-Based-Authorization | ||
|
||
npm install | ||
|
||
npm start (or) ng serve | ||
|
||
Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files. | ||
|
||
### Production | ||
* `npm run build` | ||
|
||
### Tests | ||
* `npm run lint` | ||
* `npm run test` | ||
* `npm run e2e` |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,14 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<base href="/" /> | ||
<title>Angular 8 - Role Based Authorization Tutorial & Example</title> | ||
<title>Angular 8 - Role Based Authorization</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<!-- bootstrap css --> | ||
<link href="//netdna.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" /> | ||
</head> | ||
|
||
<body> | ||
<app>Loading...</app> | ||
</body> | ||
</html> | ||
|
||
</html> |