mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 17:43:12 +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();
|
|
}
|
|
|
|
}
|
|
} |