Guest User

Untitled

a guest
Jun 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class HomeController : Controller
  2. {
  3. public ActionResult Login()
  4. {
  5. return View();
  6. }
  7.  
  8. [HttpPost]
  9. public ActionResult Login(Credentials credentials)
  10. {
  11. return new EmptyResult();
  12. }
  13. }
Add Comment
Please, Sign In to add comment