2023-04-07 13:49:59 +04:00
|
|
|
@using HotelContracts.ViewModels
|
|
|
|
|
|
|
|
|
|
|
|
@model List<DinnerViewModel>
|
|
|
|
|
|
|
|
@{
|
|
|
|
ViewData["Title"] = "Home Page";
|
|
|
|
}
|
|
|
|
|
|
|
|
<div class="text-center">
|
2023-04-07 14:03:51 +04:00
|
|
|
<h1 class="display-4">Главная страница</h1>
|
2023-04-07 13:49:59 +04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="text-center">
|
|
|
|
@{
|
|
|
|
if (Model == null)
|
|
|
|
{
|
|
|
|
<h3 class="display-4">Авторизируйтесь</h3>
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</div>
|