Technical Interview and machine test
ASP.NET MVC project with SQL Server backend.
Use Entity Framework (EF) to interact with the SQL database.
ASP.NET MVC Project Structure
Models: Represents the data layer and contains the user data structure.
Views: Represents the user interface (UI) where users interact with the application.
Controllers: Handles the logic for processing requests from users, interacting with the data models, and returning appropriate views.Once the controller and views are set up, run your application. You should be able to Register a new user (with password hashing),Log in using the registered credentials,View the profile of the logged-in user.