Skip to content

Commit

Permalink
Make two checkboxes every row in step 2
Browse files Browse the repository at this point in the history
  • Loading branch information
shirley5li committed Dec 28, 2018
1 parent 12d377a commit 4ae63fb
Showing 1 changed file with 26 additions and 21 deletions.
47 changes: 26 additions & 21 deletions templates/test.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,30 +114,35 @@
</div>
<div class="row">
<form id="testProps-form">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12 text-center">
<div class="checkbox">
<label>
<input type="checkbox" id="frequencyTest" checked>Frequency Test
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="frequencyTestWithinABlock" checked>Frequency Test within a Block
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="runsTest" checked>Runs Test
</label>
<div class="row" style="margin-left: 0px; margin-right: 0px">
<div class="col-xs-2 col-sm-3 col-md-3 col-lg-4"></div>
<div class="col-xs-4 col-sm-3 col-md-3 col-lg-3">
<span class="checkbox">
<input type="checkbox" id="frequencyTest" checked>Frequency Test
</span>
</div>
<div class="col-xs-5 col-sm-4 col-md-4 col-lg-4">
<span class="checkbox">
<input type="checkbox" id="frequencyTestWithinABlock" checked>Frequency Test within a Block
</span>
</div>
<div class="col-xs-1 col-sm-1 col-md-2 col-lg-1">
</div>
</div>
<div class="row" style="margin-left: 0px; margin-right: 0px">
<div class="col-xs-2 col-sm-3 col-md-3 col-lg-4"></div>
<div class="col-xs-4 col-sm-3 col-md-3 col-lg-3">
<span class="checkbox">
<input type="checkbox" id="runsTest" checked>Runs Test
</span>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="longestRunOfOnesInABlock" checked>Test for the Longest Run of Ones in a Block
</label>
<div class="col-xs-5 col-sm-4 col-md-4 col-lg-4">
<span class="checkbox">
<input type="checkbox" id="longestRunOfOnesInABlock" checked>Test for the Longest Run of Ones in a Block
</span>
</div>
<div class="col-xs-1 col-sm-1 col-md-2 col-lg-1"></div>
</div>
</div>
</form>
</div>
</div>
Expand Down

0 comments on commit 4ae63fb

Please sign in to comment.