I have a sign up page divided into two sections. I just want to show each section content hiding in current page when someone click these major buttons. The concept is similar to bootstrap tabs, but I'm not using tabs here. These are simple bootstrap buttons. I tried to play with bootstrap classes with my code but got no luck. I'm using meteor and react. Screenshot for the image.
And this is my code
<div id="signup-top-btn">
<div id="myTabs" role="tablist">
<div className="col-xs-6 signup-work-btn">
<button type="button" className="btn btn-block blue-btn active-btn"
data-toggle="tab"
>
Work
</button>
</div>
<div className="col-xs-6 signup-hire-btn">
<button type="button" className="btn btn-primary btn-block blue-btn"
data-toggle="tab" data-target="#employer-signup"
>
Hire
</button>
</div>
</div>
</div>
Any idea?