Added <input type="button"> alongside existing <button type="submit">

<input type="button"> was missing from the list of action buttons
This commit is contained in:
Gifford Nowland 2016-04-05 09:20:59 -05:00
parent 5ff15df75d
commit c7d89818d6

View File

@ -393,6 +393,7 @@
<p>
<input type="submit" value="Input">
<button type="submit">Button</button>
<input type="button" value="Input Button">
<input type="reset" value="Reset">
<input type="submit" value="Disabled" disabled>
</p>