jerguero-cs/Pages/New.cshtml

24 lines
465 B
Plaintext
Raw Permalink Normal View History

2024-08-24 16:45:34 +00:00
@page
2024-08-24 17:02:15 +00:00
@model NewDefinitionModel
@using Microsoft.AspNetCore.Mvc;
@using Microsoft.AspNetCore.Mvc.RazorPages;
2024-08-24 16:45:34 +00:00
@{
}
<p>New definition :D</p>
2024-08-24 17:02:15 +00:00
@functions {
public class NewDefinitionModel : PageModel
{
public IActionResult OnGet()
{
if (User.Identity?.IsAuthenticated != true)
{
return RedirectToPage($"/Login", new { redirect = "/New" });
}
return Page();
}
}
}