Created
June 11, 2017 09:56
-
-
Save jacobandresen/42ba36e9416786c378f6240d7a59da0f to your computer and use it in GitHub Desktop.
pet form
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="container"> | |
<form class="form-horizontal" role="form"> | |
<div class="form-group"> | |
<span class="col-sm-2 control-label" for="name">name</span> | |
<div class="col-sm-10"> | |
<input class="form-control" type="text" name="name" id="name" /> | |
</div> | |
</div> | |
<div class="form-group"> | |
<span class="col-sm-2 control-label">type</span> | |
<div class="col-sm-10"> | |
<select class="form-control" data-live-search="true" name="type" id="type"> | |
</select> | |
</div> | |
</div> | |
<div class="form-group"> | |
<span class="col-sm-2 control-label">breed</span> | |
<div class="col-sm-10"> | |
<select class="form-control" data-live-search="true" name="breed" id="breed" /> | |
</div> | |
</div> | |
<div class="form-group"> | |
<button type="submit" class="btn btn-primary pull-right" name="button" id="add">Add to List</button> | |
</div> | |
</form> | |
<hr/> | |
<ul id="list"> | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment