Compare commits

...

2 Commits

Author SHA1 Message Date
9c694d0a43 Merge pull request 'Login Button UI changed' (#36) from rajesh into main
Reviewed-on: #36
2025-09-29 10:12:14 +00:00
3f4351d303 Login Button UI changed 2025-09-29 15:41:29 +05:30
3 changed files with 9 additions and 3 deletions

View File

@ -163,7 +163,8 @@
<div class="logo">KodePilot</div>
<input type="text" class="search" placeholder="Search Opportunities">
<div class="buttons">
<a href="/login">Log in</a>
<!-- <a href="/login">Log in</a> -->
<button class="login_first" onclick="goToLogin()">Login</button>
<button class="business" onclick="getInTouch()">Let's Talk</button>
<button class="login" onclick="goToApplay()">Request a call</button>
</div>

View File

@ -90,11 +90,12 @@
}
.business {
background: #ffcc00;
background: #FFD700;
color: #030101;
}
.login {
background: #007bff;
background: #1E90FF;
color: #fff;
}

View File

@ -1,3 +1,7 @@
function goToLogin() {
window.location.href = "/login";
}
function goToApplay() {
window.location.href = "/apply/";
}