diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..2998dc6 --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,10 @@ +{ + "permissions": { + "allow": [ + "Bash(git add:*)", + "Bash(git commit:*)" + ], + "deny": [], + "ask": [] + } +} diff --git a/MoneyMap/Pages/Cards.cshtml b/MoneyMap/Pages/Cards.cshtml new file mode 100644 index 0000000..1f8b42d --- /dev/null +++ b/MoneyMap/Pages/Cards.cshtml @@ -0,0 +1,93 @@ +@page +@model MoneyMap.Pages.CardsModel +@{ + ViewData["Title"] = "Manage Cards"; +} + +
| Owner | +Issuer | +Last 4 | +Transactions | +Actions | +
|---|---|---|---|---|
| @item.Card.Owner | +@item.Card.Issuer | +•••• @item.Card.Last4 | +@item.TransactionCount | +
+
+
+ Edit
+
+ @if (item.TransactionCount == 0)
+ {
+
+ }
+ else
+ {
+
+ }
+
+ |
+
Use this page to detail your site's privacy policy.
diff --git a/MoneyMap/Pages/Privacy.cshtml.cs b/MoneyMap/Pages/Privacy.cshtml.cs new file mode 100644 index 0000000..e3619a0 --- /dev/null +++ b/MoneyMap/Pages/Privacy.cshtml.cs @@ -0,0 +1,20 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace MoneyMap.Pages +{ + public class PrivacyModel : PageModel + { + private readonly ILogger