|
| 1 | +Following functionality are developed : |
| 2 | + |
| 3 | +Applied JWT authentication |
| 4 | +Asp.Net Identity |
| 5 | + |
| 6 | +1) Registration |
| 7 | + > Reactive Form Approach |
| 8 | + > Confirm email to activate the account |
| 9 | + |
| 10 | +2) Login |
| 11 | + > Template driven approach |
| 12 | + |
| 13 | +3) Forgot Password |
| 14 | + > Reactive Form Approach |
| 15 | + > Reset password link will be sending to the registered email address. |
| 16 | + > Reset password screen to update the password |
| 17 | + |
| 18 | +4) Home Page after login |
| 19 | + |
| 20 | +5) My Profile |
| 21 | + |
| 22 | +6) Change Password |
| 23 | + |
| 24 | +Note : Please refer the document : AngularApp.docx for complate application demo. |
| 25 | + |
| 26 | +**************Angular*************************************************** |
| 27 | +Angular CLI: 8.1.2 |
| 28 | +Node: 10.16.0 |
| 29 | +************************************************************************ |
| 30 | + |
| 31 | +*************Asp.Net Core Web API*************************************** |
| 32 | + |
| 33 | +Create Web API (.Net Core 2.2) |
| 34 | + |
| 35 | +Create Libraries : |
| 36 | + > CommonCore.DataAccess |
| 37 | + > Install following packages on DataAccess library |
| 38 | + > Microsoft.EntityFrameworkCore (2.2) |
| 39 | + > Microsoft.EntityFrameworkCore.SqlServer (2.2) |
| 40 | + > Microsoft.EntityFrameworkCore.Tools (2.2) |
| 41 | + > Microsoft.AspNetCore.All(2.2) |
| 42 | + |
| 43 | + > CommonCore.Domain |
| 44 | + > CommonCore.Services |
| 45 | + > CommonCore.Helper [Helper classed to access the web configurations] |
| 46 | + > Install following packages on helper library |
| 47 | + > Microsoft.Extensions.Configuration (2.2) |
| 48 | + > Microsoft.Extensions.Configuration.Json (2.2) |
| 49 | + |
| 50 | +Generate table using migration command : |
| 51 | + |
| 52 | + > Add-Migration "InitialCreate" (Select data access library while runnig migration : CommonCoreAPI.DataAccess) |
| 53 | + > Update-Database |
| 54 | + |
| 55 | +Note: Before running the project you have to update the email and password for sending email through system - EmailService |
| 56 | + |
| 57 | +**************************************************************************** |
| 58 | + |
| 59 | + |
0 commit comments