mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
ids over names
This commit is contained in:
parent
74a264fb98
commit
00cc166671
1 changed files with 4 additions and 4 deletions
|
@ -677,13 +677,13 @@
|
||||||
<div class="form-group form-group-lg">
|
<div class="form-group form-group-lg">
|
||||||
<label class="col-sm-2 control-label" for="formGroupInputLarge">Large label</label>
|
<label class="col-sm-2 control-label" for="formGroupInputLarge">Large label</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<input class="form-control" type="text" name="formGroupInputLarge" placeholder="Large input">
|
<input class="form-control" type="text" id="formGroupInputLarge" placeholder="Large input">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group form-group-sm">
|
<div class="form-group form-group-sm">
|
||||||
<label class="col-sm-2 control-label" for="formGroupInputSmall">Small label</label>
|
<label class="col-sm-2 control-label" for="formGroupInputSmall">Small label</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<input class="form-control" type="text" name="formGroupInputSmall" placeholder="Small input">
|
<input class="form-control" type="text" id="formGroupInputSmall" placeholder="Small input">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
@ -693,13 +693,13 @@
|
||||||
<div class="form-group form-group-lg">
|
<div class="form-group form-group-lg">
|
||||||
<label class="col-sm-2 control-label" for="formGroupInputLarge">Large label</label>
|
<label class="col-sm-2 control-label" for="formGroupInputLarge">Large label</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<input class="form-control" type="text" name="formGroupInputLarge" placeholder="Large input">
|
<input class="form-control" type="text" id="formGroupInputLarge" placeholder="Large input">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group form-group-sm">
|
<div class="form-group form-group-sm">
|
||||||
<label class="col-sm-2 control-label" for="formGroupInputSmall">Small label</label>
|
<label class="col-sm-2 control-label" for="formGroupInputSmall">Small label</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<input class="form-control" type="text" name="formGroupInputSmall" placeholder="Small input">
|
<input class="form-control" type="text" id="formGroupInputSmall" placeholder="Small input">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Reference in a new issue