1
0
Fork 0
mirror of https://github.com/miawinter98/just-short-it.git synced 2024-09-20 09:48:59 +00:00
just-short-it/Pages/Index.cshtml
2023-04-15 15:40:46 +02:00

16 lines
468 B
Plaintext

@page "{Id?}"
@model IndexModel
@{
ViewData["Title"] = "Startpage";
}
<div class="has-text-centered my-6 px-4">
@if (Model.Id is null) {
<h1 class="title is-1 is-spaced">Welcome to Just Short It!</h1>
<h2 class="subtitle is-2">The KISS single-user URL shortener!</h2>
<a class="button is-primary is-medium" asp-page="Urls">Start shorting URLs</a>
} else {
<p class="has-text-danger">@Model.ErrorMessage</p>
}
</div>