mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
36 lines
862 B
C#
36 lines
862 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using OpenAuth.App.SSO;
|
|
|
|
namespace OpenAuth.WebTest.Controllers
|
|
{
|
|
public class LoginController : Controller
|
|
{
|
|
// GET: Login
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
[HttpPost]
|
|
public ActionResult Index(string username, string password)
|
|
{
|
|
var token = AuthUtil.Login("670b14728ad9902aecba32e22fa4f6bd", username, password);
|
|
if (!string.IsNullOrEmpty(token))
|
|
return Redirect("/home/index?Token=" + token);
|
|
else
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
|
|
public ActionResult Logout()
|
|
{
|
|
AuthUtil.Logout();
|
|
return Redirect("/Home/Index");
|
|
}
|
|
}
|
|
} |