diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/index.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/index.html b/docs/index.html index b9fffce97..686115684 100644 --- a/docs/index.html +++ b/docs/index.html @@ -843,8 +843,10 @@ <h3>Example buttons</h3> <p>Button styles can be applied to anything with the <code>.btn</code> applied. Typically you’ll want to apply these to only <code><a></code>, <code><button></code>, and select <code><input></code> elements. Here’s how it looks:</p> <div class="well" style="padding: 14px 19px;"> - <button type="submit" class="btn primary">Submit</button> - <button type="submit" class="btn">Cancel</button> + <form> + <button type="submit" class="btn primary">Submit</button> + <button type="submit" class="btn">Cancel</button> + </form> </div> <h3>Alternate sizes</h3> <p>Fancy larger or smaller buttons? Have at it!</p> @@ -866,8 +868,10 @@ </div> <h4>Buttons</h4> <div class="well"> - <button class="btn large primary disabled" disabled>Primary action</button> - <button class="btn large disabled" disabled>Action</button> + <form> + <button class="btn large primary disabled" disabled>Primary action</button> + <button class="btn large disabled" disabled>Action</button> + </form> </div> </div> </div> |
