ASP.NET MVC: Authentication and Authorization

How to Implement Authentication and Authorization, check if user is authorized inside action with ASP.NET Identity MVC 5 using C#, Entity Framework Code First

Step 1: To check user authentication and authorization you can change the HomeController as below

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return View();
    }

    [Authorize(Roles = "Admin")]//user 1
    public ActionResult About()
    {
        ViewBag.Message = "Your application description page.";

        return View();
    }

    [Authorize(Roles = "Sales")]//user 2
    public ActionResult Contact()
    {
        ViewBag.Message = "Your contact page.";

        return View();
    }
}

VIDEO TUTORIALS