diff options
| author | Mark Otto <[email protected]> | 2011-10-09 22:02:40 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-10-09 22:02:40 -0700 |
| commit | 831f279011fb0abf69a781541e6b7f33459ba26b (patch) | |
| tree | ac1cd4dc265c51b1853db5e07664215c9ba0cf10 /docs | |
| parent | 8f0671adfb70a7037dfcecf84e584ae38fc89b27 (diff) | |
| download | bootstrap-831f279011fb0abf69a781541e6b7f33459ba26b.tar.xz bootstrap-831f279011fb0abf69a781541e6b7f33459ba26b.zip | |
add extra states to the form examples
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/index.html | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/docs/index.html b/docs/index.html index ea80e965c..81c4ea97f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1103,19 +1103,33 @@ </div> </div><!-- /clearfix --> <div class="clearfix error"> - <label for="xlInput2">Input with error</label> + <label for="errorInput">Input with error</label> <div class="input"> - <input class="xlarge error" id="xlInput2" name="xlInput2" size="30" type="text" /> + <input class="xlarge error" id="errorInput" name="errorInput" size="30" type="text" /> <span class="help-inline">Small snippet of help text</span> </div> </div><!-- /clearfix --> <div class="clearfix error"> - <label for="xlInput2">Input with error</label> + <label for="errorInput2">Input with error</label> <div class="input"> - <input class="xlarge error" id="xlInput2" name="xlInput2" size="30" type="text" /> + <input class="xlarge error" id="errorInput2" name="errorInput2" size="30" type="text" /> <span class="help-inline">Small snippet of help text</span> </div> </div><!-- /clearfix --> + <div class="clearfix success"> + <label for="successInput">Input with success</label> + <div class="input"> + <input class="xlarge error" id="successInput" name="successInput" size="30" type="text" /> + <span class="help-inline">Success!</span> + </div> + </div><!-- /clearfix --> + <div class="clearfix warning"> + <label for="warningInput">Input with warning</label> + <div class="input"> + <input class="xlarge error" id="warningInput" name="warningInput" size="30" type="text" /> + <span class="help-inline">Ruh roh!</span> + </div> + </div><!-- /clearfix --> </fieldset> <fieldset> <legend>Example form legend</legend> |
