Skip to content

Instantly share code, notes, and snippets.

@planetoftheweb
Created December 19, 2018 00:53
Show Gist options
  • Save planetoftheweb/2b02508ddb7b69006641621f22cf6ea4 to your computer and use it in GitHub Desktop.
Save planetoftheweb/2b02508ddb7b69006641621f22cf6ea4 to your computer and use it in GitHub Desktop.
<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