I am trying to figure out how to make my C# application login to my website application. I have absolutely 0 idea where to begin. Normally on the website the user just enters user and password and checks or doesn't check remember me button and clicks login. My python framework verifies the login, and then sets a cookie in the header of the response to save the login cookie. When a user tries visiting a page it checks to see if it can find the cookie, and if it does then it keeps the user logged in.
I have absolutely 0 idea how I would go about doing something like this in the desktop C# application. Can someone point me in the right direction?
Thanks