Created
January 31, 2013 21:13
-
-
Save tkh44/4686505 to your computer and use it in GitHub Desktop.
button-group
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 class="button-group"> | |
<button class="button secondary">Generate Password</button> | |
<button class="button secondary dropdown-toggle" data-toggle="dropdown"> | |
<span class="gear">⚙</span> | |
</button> | |
<ul class="dropdown-menu pull-right"> | |
<li> | |
<div class="dropdown-form-item"> | |
<div id="passwordSlider" class="dropdown-form-item"> | |
<span>Password Length: <span></span></span> | |
</div> | |
</div> | |
</li> | |
<li> | |
<div class="dropdown-form-item"> | |
<label class="checkbox"> | |
Uppercase <input type="checkbox"> | |
</label> | |
</div> | |
</li> | |
<li> | |
<div class="dropdown-form-item"> | |
<label class="checkbox"> | |
Numbers <input type="checkbox"> | |
</label> | |
</div> | |
</li> | |
<li> | |
<div class="dropdown-form-item"> | |
<label class="checkbox"> | |
Symbols <input type="checkbox"> | |
</label> | |
</div> | |
</li> | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment