diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/index.html b/docs/index.html index 889bc0437..78a2b0333 100644 --- a/docs/index.html +++ b/docs/index.html @@ -763,21 +763,21 @@ <ul class="inputs-list"> <li> <label> - <input type="checkbox" name="optionsCheckboxes" value="option1" /> + <input type="radio" checked name="optionsRadios" value="option1" /> <span>Option one is this and that—be sure to include why it’s great</span> </label> </li> <li> <label> - <input type="checkbox" name="optionsCheckboxes" value="option2" /> - <span>Option two can also be checked and included in form results</span> + <input type="radio" name="optionsRadios" value="option2" /> + <span>Option two can is something else and selecting it will deselect options 1</span> </label> </li> </ul> </div> </div><!-- /clearfix --> <div class="actions"> - <button type="submit" class="btn primary">Save Changes</button> <button type="reset" class="btn">Cancel</button> + <input type="submit" class="btn primary" value="Save Changes"> <button type="reset" class="btn">Cancel</button> </div> </fieldset> </form> |
