This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
trainav/bahnplan.web/Pages/Card.cshtml
2020-06-12 18:19:28 +02:00

15 lines
278 B
Plaintext

@page
@using Microsoft.AspNetCore.Http
@model CardModel
@{
ViewData["Title"] = "Card";
Response.Redirect("/Cards");
if (HttpContext.Session.GetString("authorized") != "true") {
Response.Redirect("/");
return;
}
}
Card saved. Redirecting...