2024-05-01 12:26:57 +04:00
|
|
|
|
@{
|
2024-05-28 16:17:08 +04:00
|
|
|
|
ViewData["Title"] = "Страница кассира";
|
2024-05-01 12:08:34 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<div class="text-center">
|
2024-05-28 16:17:08 +04:00
|
|
|
|
<h1 class="display-4">Страница кассира</h1>
|
2024-05-01 12:08:34 +04:00
|
|
|
|
</div>
|
|
|
|
|
|
2024-05-28 16:17:08 +04:00
|
|
|
|
<div class="text-center">
|
|
|
|
|
@{
|
|
|
|
|
<img src="~/lib/logo.png" style="width: 700px" />
|
|
|
|
|
|
|
|
|
|
if (APICashier.Cashier == null)
|
|
|
|
|
{
|
|
|
|
|
<h3 class="display-4">Сначала авторизируйтесь</h3>
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<h3 class="display-4">Здравствуйтe, @APICashier.Cashier.Name @APICashier.Cashier.Patronymic</h3>
|
|
|
|
|
}
|
|
|
|
|
</div>
|