Posts

Showing posts with the label login

Login query for asp.net

Login query for asp.net How can I use this query in mvc 5 for login conformation var userInfo = db.Users.Where((s => s.Email == model.Email.Trim()) && (s=>s.Password == model.Password.Trim())).FirstOrDefault(); By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Adding a Microsoft login page to my xamarin forms app

Image
Adding a Microsoft login page to my xamarin forms app I've been trying to implement a microsoft API in order for users to sign into my app using a microsoft account. I've tried using Auth0, but it has different code depending on the platform. My app is supposed to be a cross platform app that's native to both iOS and android. So basically I'm trying to find a way to implement it in the section highlighted in the image below. Any suggestions would be helpful. Also, i've found a couple tutorials and step by step walkthroughs but they're really complicated. I'm still new to xamarin and coding in general so I'm kinda looking for an easy fix here. And i'm pretty sure I haven't explained my situation in the best way but I can't really think of any other way of phrasing it. Thanks By clicking "Post Your Answer", you acknowledge that you have read our updated terms of servi...