diff --git a/TicketOffice/Pages/Account/Index.cshtml.cs b/TicketOffice/Pages/Account/Index.cshtml.cs deleted file mode 100644 index 8fc6309..0000000 --- a/TicketOffice/Pages/Account/Index.cshtml.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Microsoft.AspNetCore.Mvc.RazorPages; - -namespace TicketOffice.Pages.Account; - -public class Index : PageModel -{ - public void OnGet() - { - } -} \ No newline at end of file diff --git a/TicketOffice/Pages/Account/Index.cshtml b/TicketOffice/Pages/Auth/Account.cshtml similarity index 51% rename from TicketOffice/Pages/Account/Index.cshtml rename to TicketOffice/Pages/Auth/Account.cshtml index 0e66df1..c7fb39e 100644 --- a/TicketOffice/Pages/Account/Index.cshtml +++ b/TicketOffice/Pages/Auth/Account.cshtml @@ -1,9 +1,11 @@ @page -@model TicketOffice.Pages.Account.Index +@model TicketOffice.Pages.Account.IndexModel @{ Layout = "~/Pages/Shared/_Layout.cshtml"; ViewData["Title"] = "Аккаунт"; } -} + + + diff --git a/TicketOffice/Pages/Auth/Account.cshtml.cs b/TicketOffice/Pages/Auth/Account.cshtml.cs new file mode 100644 index 0000000..2abf037 --- /dev/null +++ b/TicketOffice/Pages/Auth/Account.cshtml.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; +using Microsoft.EntityFrameworkCore; +using TicketOffice.Data; +using TicketOffice.Models; + +namespace TicketOffice.Pages.Account; + +public class IndexModel : PageModel +{ + +} \ No newline at end of file diff --git a/TicketOffice/Pages/Auth/Index.cshtml b/TicketOffice/Pages/Auth/Index.cshtml new file mode 100644 index 0000000..463455d --- /dev/null +++ b/TicketOffice/Pages/Auth/Index.cshtml @@ -0,0 +1,6 @@ +@page +@model TicketOffice.Pages.Auth.IndexModel + +@{ + Layout = null; +} \ No newline at end of file diff --git a/TicketOffice/Pages/Auth/Index.cshtml.cs b/TicketOffice/Pages/Auth/Index.cshtml.cs new file mode 100644 index 0000000..57ab1b5 --- /dev/null +++ b/TicketOffice/Pages/Auth/Index.cshtml.cs @@ -0,0 +1,9 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace TicketOffice.Pages.Auth; + +public class IndexModel : PageModel +{ + public ActionResult OnGet() => HttpContext.Session.GetInt32("UserId") is not null ? RedirectToPage("/Auth/Account") : RedirectToPage("/Auth/Login"); +} \ No newline at end of file diff --git a/TicketOffice/Pages/Auth/Login.cshtml b/TicketOffice/Pages/Auth/Login.cshtml index 708f454..0f46d9e 100644 --- a/TicketOffice/Pages/Auth/Login.cshtml +++ b/TicketOffice/Pages/Auth/Login.cshtml @@ -16,13 +16,13 @@
Введіть дату й місто відправлення або прибуття
+Уведіть дату й місто відправлення або прибуття