``` Hirabe ``` ```
Hirabe Logo
  • Home
Sign In Register As Seller
Hirabe Logo

Buy. Sell. Grow.

Kenya's trusted online marketplace connecting buyers, sellers and businesses in one secure platform. Discover thousands of products, verified stores and amazing deals every day.

Join Hirabe Today

5,000+ Shops

Verified Sellers

Secure Payments

24/7 Support

20K+

Active Users

100K+

Products

47

Counties Covered
```
Hirabe Logo

Welcome Back

Sign in to continue to your Hirabe Marketplace account.

Google Continue with Google
or sign in with email
Forgot Password?

Don't have an account? Create Account

```
function togglePassword() { const password = document.getElementById('password'); const eyeIcon = document.getElementById('eyeIcon'); if (password.type === "password") { password.type = "text"; eyeIcon.classList.remove('fa-eye'); eyeIcon.classList.add('fa-eye-slash'); } else { password.type = "password"; eyeIcon.classList.remove('fa-eye-slash'); eyeIcon.classList.add('fa-eye'); } } /*---------------------------------- Loading Button -----------------------------------*/ document.addEventListener("DOMContentLoaded", function () { const form = document.getElementById("loginForm"); if (form) { form.addEventListener("submit", function () { const button = document.getElementById("loginBtn"); const text = document.getElementById("btnText"); button.disabled = true; text.innerHTML = ` Signing In... `; }); } }); /*---------------------------------- Auto Hide Alerts -----------------------------------*/ document.addEventListener("DOMContentLoaded", function () { const alerts = document.querySelectorAll(".alert"); alerts.forEach(function(alert) { setTimeout(function() { alert.classList.add("fade"); setTimeout(function() { alert.remove(); }, 400); }, 5000); }); });