@@ -17,10 +17,45 @@
Сначала авторизируйтесь
return;
}
-
-
Здравствуйтe, @Model.Name @Model.Patronymic
- Открыть счёт
+ Создать карту
+
+
+
+
+ Номер счёта
+ |
+
+ CVC
+ |
+
+ Фамилия владельца
+ |
+
+ Срок действия
+ |
+
+
+
+ @foreach (var item in Model)
+ {
+
+
+ @Html.DisplayFor(modelItem => item.Number)
+ |
+
+ @Html.DisplayFor(modelItem => item.CVC)
+ |
+
+ @Html.DisplayFor(modelItem => item.ClientSurname)
+ |
+
+ @Html.DisplayFor(modelItem => item.Period)
+ |
+
+ }
+
+
}
\ No newline at end of file
diff --git a/BankYouBankrupt/BankYouBankruptClientApp/Views/Home/Profile.cshtml b/BankYouBankrupt/BankYouBankruptClientApp/Views/Home/Profile.cshtml
new file mode 100644
index 0000000..bca92be
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptClientApp/Views/Home/Profile.cshtml
@@ -0,0 +1,23 @@
+@using BankYouBankruptContracts.ViewModels
+
+@model ClientViewModel
+
+@{
+ ViewData["Title"] = "Home Page";
+}
+
+
+ @{
+ if (Model == null)
+ {
+
Сначала авторизируйтесь
+ return;
+ }
+
+
Здравствуйтe, @Model.Name @Model.Patronymic
+ }
+
\ No newline at end of file
diff --git a/BankYouBankrupt/BankYouBankruptClientApp/Views/Home/Register.cshtml b/BankYouBankrupt/BankYouBankruptClientApp/Views/Home/Register.cshtml
index 35db21b..e2376bf 100644
--- a/BankYouBankrupt/BankYouBankruptClientApp/Views/Home/Register.cshtml
+++ b/BankYouBankrupt/BankYouBankruptClientApp/Views/Home/Register.cshtml
@@ -48,4 +48,10 @@