2022-09-29 02:37:24 +03:00
|
|
|
using BlueWest.Views.Utils;
|
2022-09-26 04:05:23 +03:00
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
namespace BlueWest.Views.Controllers
|
|
|
|
{
|
2022-09-29 02:37:24 +03:00
|
|
|
[System.Web.Mvc.Route("/login")]
|
|
|
|
|
2022-09-26 04:05:23 +03:00
|
|
|
public class AuthController : Controller
|
|
|
|
{
|
2022-09-29 02:37:24 +03:00
|
|
|
|
|
|
|
public IActionResult Index()
|
|
|
|
{
|
|
|
|
this.HandleGlobalization();
|
|
|
|
return View();
|
|
|
|
}
|
2022-09-26 04:05:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|