Files
Otchislator/src/Otchinslator/Components/Pages/NotSupported.razor
Sergey Karmanov bb2c2328f5
All checks were successful
Build and deploy / Publish image (push) Successful in 3m33s
Бамп версии до 9 и добавил выбор института
2025-01-21 02:13:29 +03:00

17 lines
616 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@using Microsoft.AspNetCore.Authorization
@attribute [Authorize]
@page "/notsupported"
<PageTitle>Не доступно | Отчислятор 3000</PageTitle>
<div class="relative w-96 sm:w-[32rem]">
<p class="text-center">Извините за неудобства, но пока что доступны только институты <p class="font-bold text-center">ИТА ЮФУ</p></p>
<div class="text-center">
<a href="/"
class="relative btn rounded-full mt-4 min-h-2 min-w-2 w-10 h-10">
<img class="absolute p-2 min-w-2 min-h-0" src="img/exit.svg" alt=""/>
</a>
</div>
</div>