From 9217f77998443165e0ccf575be2c73170b258cd0 Mon Sep 17 00:00:00 2001 From: Vantz Stockwell Date: Sat, 14 Feb 2026 21:46:35 -0500 Subject: [PATCH] feat: Implement login, register, and dashboard views Build complete auth flow with dark-themed CORROSION branding, loading states, error handling, client-side validation, and placeholder dashboard with stat cards and quick actions. Co-Authored-By: Claude Opus 4.6 --- frontend/src/views/admin/DashboardView.vue | 70 ++++++- frontend/src/views/auth/LoginView.vue | 129 ++++++++++++- frontend/src/views/auth/RegisterView.vue | 206 ++++++++++++++++++++- 3 files changed, 393 insertions(+), 12 deletions(-) diff --git a/frontend/src/views/admin/DashboardView.vue b/frontend/src/views/admin/DashboardView.vue index 13b13c8..d53e3a1 100644 --- a/frontend/src/views/admin/DashboardView.vue +++ b/frontend/src/views/admin/DashboardView.vue @@ -1,10 +1,72 @@ diff --git a/frontend/src/views/auth/LoginView.vue b/frontend/src/views/auth/LoginView.vue index 6412907..1d21dbb 100644 --- a/frontend/src/views/auth/LoginView.vue +++ b/frontend/src/views/auth/LoginView.vue @@ -1,10 +1,131 @@ diff --git a/frontend/src/views/auth/RegisterView.vue b/frontend/src/views/auth/RegisterView.vue index 9de0134..99ba086 100644 --- a/frontend/src/views/auth/RegisterView.vue +++ b/frontend/src/views/auth/RegisterView.vue @@ -1,10 +1,208 @@