44 lines
767 B
Plaintext
Raw Normal View History

2024-05-01 20:09:54 +04:00
@using BankContracts.ViewModels.Client.ViewModels
@model List<CardViewModel>
@{
ViewData["Title"] = "Cписок банковских карт";
}
<div class="text-center">
<h1 class="display-4">Банковские карты</h1>
</div>
<div class="text-center">
@{
<p>
<a asp-action="CreateCard">Оформить банковскую карту</a>
2024-05-01 20:09:54 +04:00
</p>
<table class="table">
<thead>
<tr>
<th>
Номер карты
</th>
<th>
Фамилия владельца
</th>
<th>
Имя владельца
</th>
<th>
Отчество владельца
</th>
<th>
Баланс
</th>
<th>
Период
</th>
</tr>
</thead>
</table>
}
</div>