Created
December 19, 2018 00:53
-
-
Save planetoftheweb/2b02508ddb7b69006641621f22cf6ea4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div className="search-appointments row justify-content-center my-4"> | |
<div className="col-md-6"> | |
<div className="input-group"> | |
<input | |
id="SearchApts" | |
type="text" | |
className="form-control" | |
aria-label="Search Appointments" | |
/> | |
<div className="input-group-append"> | |
<button | |
type="button" | |
className="btn btn-primary dropdown-toggle" | |
data-toggle="dropdown" | |
aria-haspopup="true" | |
aria-expanded="false" | |
> | |
Sort by: <span className="caret" /> | |
</button> | |
<div className="sort-menu dropdown-menu dropdown-menu-right"> | |
<button className="sort-by dropdown-item" href="#"> | |
Pet Name | |
</button> | |
<button className="sort-by dropdown-item" href="#"> | |
Date | |
</button> | |
<button className="sort-by dropdown-item" href="#"> | |
Owner | |
</button> | |
<div role="separator" className="dropdown-divider" /> | |
<button className="sort-by dropdown-item" href="#"> | |
Asc | |
</button> | |
<button className="sort-by dropdown-item" href="#"> | |
Desc | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment