1
0
Fork 0
mirror of https://github.com/miawinter98/just-short-it.git synced 2024-09-20 01:39:00 +00:00
just-short-it/Pages/Index.cshtml

16 lines
558 B
Plaintext
Raw Normal View History

2023-04-15 13:40:46 +00:00
@page "{Id?}"
@model IndexModel
@{
ViewData["Title"] = "Startpage";
}
2023-11-18 02:10:37 +00:00
<div class="text-center flex flex-col items-center gap-4">
2023-04-15 13:40:46 +00:00
@if (Model.Id is null) {
2023-11-18 02:10:37 +00:00
<h1 class="text-3xl lg:text-5xl font-bold text-primary-content">Welcome to Just Short It!</h1>
<h2 class="text-xl lg:text-3xl font-bold text-secondary-content">The KISS single-user URL shortener!</h2>
<a class="btn btn-primary btn-lg min-h-0 h-12" asp-page="Urls">Start shorting URLs</a>
2023-04-15 13:40:46 +00:00
} else {
2023-11-18 02:10:37 +00:00
<p class="text-error">@Model.ErrorMessage</p>
2023-04-15 13:40:46 +00:00
}
</div>