From 647d066822e29ac9279879ac099b3c95dc956964 Mon Sep 17 00:00:00 2001 From: Annika Date: Sat, 9 Jul 2022 17:41:20 -0600 Subject: [PATCH] some really basic styling out of the way, ready to build out UI --- budgit.client/index.html | 2 +- budgit.client/src/App.vue | 8 ++-- budgit.client/src/components/Dropdown.vue | 20 ++++++++ budgit.client/src/components/Login.vue | 47 ++++++------------- budgit.client/src/components/Navbar.vue | 47 +++++++------------ budgit.client/src/index.css | 8 +++- budgit.client/src/pages/OverviewPage.vue | 20 ++++++++ budgit.client/src/pages/TransactionsPage.vue | 20 ++++++++ budgit.client/src/router.js | 10 ++-- .../controllers/TransactionsController.js | 46 ++++++++++++++++++ budgit/server/services/TransactionsService.js | 24 ++++++++++ 11 files changed, 178 insertions(+), 74 deletions(-) create mode 100644 budgit.client/src/components/Dropdown.vue create mode 100644 budgit.client/src/pages/OverviewPage.vue create mode 100644 budgit.client/src/pages/TransactionsPage.vue create mode 100644 budgit/server/controllers/TransactionsController.js create mode 100644 budgit/server/services/TransactionsService.js diff --git a/budgit.client/index.html b/budgit.client/index.html index 2604f95..6b78b02 100644 --- a/budgit.client/index.html +++ b/budgit.client/index.html @@ -16,7 +16,7 @@ We're sorry but budgit.client doesn't work properly without JavaScript enabled. Please enable it to continue. -
+
diff --git a/budgit.client/src/App.vue b/budgit.client/src/App.vue index 7dd4dbd..61da437 100644 --- a/budgit.client/src/App.vue +++ b/budgit.client/src/App.vue @@ -1,13 +1,13 @@ diff --git a/budgit.client/src/components/Dropdown.vue b/budgit.client/src/components/Dropdown.vue new file mode 100644 index 0000000..a0cfa57 --- /dev/null +++ b/budgit.client/src/components/Dropdown.vue @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/budgit.client/src/components/Login.vue b/budgit.client/src/components/Login.vue index c21b034..c791a88 100644 --- a/budgit.client/src/components/Login.vue +++ b/budgit.client/src/components/Login.vue @@ -1,45 +1,23 @@