mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 22:43:11 +02:00
17 lines
293 B
C#
17 lines
293 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
using System.Text.Encodings.Web;
|
||
|
|
|
||
|
|
namespace MvcMovie.Controllers
|
||
|
|
{
|
||
|
|
public class LoginController : Controller
|
||
|
|
{
|
||
|
|
//
|
||
|
|
// GET: /HelloWorld/
|
||
|
|
|
||
|
|
public IActionResult Index()
|
||
|
|
{
|
||
|
|
return View();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|