Skip to content

Commit

Permalink
Adding a simple form to the modal example so it more closely aligns w…
Browse files Browse the repository at this point in the history
…ith the modal on the asset board
  • Loading branch information
rhamilto committed Mar 17, 2014
1 parent 6d00c76 commit 8cd30d5
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions tests/modals.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,29 @@ <h1>Modals</h1>
</button>
<h4 class="modal-title" id="myModalLabel">Modal Title</h4>
</div>
<div class="modal-body">...</div>
<div class="modal-body">
<form class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label" for="textInput">Field One</label>
<div class="col-sm-10">
<input type="text" id="textInput" class="form-control"></div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="textInput2">Field Two</label>
<div class="col-sm-10">
<input type="text" id="textInput2" class="form-control"></div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="textInput3">Field Three</label>
<div class="col-sm-10">
<input type="text" id="textInput3" class="form-control">
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary">
Next
<div class="fa fa-angle-right"></div>
</button>
<button type="button" class="btn btn-primary">Save</button>
</div>
</div>
</div>
Expand Down

0 comments on commit 8cd30d5

Please sign in to comment.