From 3f4351d30322b17b8993799b8dc7c42b46c92cd3 Mon Sep 17 00:00:00 2001 From: "rajesh.n" Date: Mon, 29 Sep 2025 15:41:29 +0530 Subject: [PATCH] Login Button UI changed --- index.html | 3 ++- main.css | 5 +++-- main.js | 4 ++++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 33b95d0..41322c9 100644 --- a/index.html +++ b/index.html @@ -163,7 +163,8 @@
- Log in + +
diff --git a/main.css b/main.css index 75ad144..74400c0 100644 --- a/main.css +++ b/main.css @@ -90,11 +90,12 @@ } .business { - background: #ffcc00; + background: #FFD700; + color: #030101; } .login { - background: #007bff; + background: #1E90FF; color: #fff; } diff --git a/main.js b/main.js index 677830d..7e622dd 100644 --- a/main.js +++ b/main.js @@ -1,3 +1,7 @@ +function goToLogin() { + window.location.href = "/login"; +} + function goToApplay() { window.location.href = "/apply/"; }