Created
April 20, 2015 13:20
-
-
Save czbaker/0691df970bdcf1818849 to your computer and use it in GitHub Desktop.
Category Form Segment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Category --> | |
| <form id="catForm"> | |
| <section class="form-group"> | |
| <label for="transAmount">Name:</label> | |
| <input type="text" class="form-control input-sm" id="catName" placeholder="Category Name"> | |
| </section> | |
| <section class="form-group"> | |
| <label for="transAmount">Budget (Optional):</label> | |
| <section class="input-group"> | |
| <span class="input-group-addon input-sm">$</span> | |
| <input type="text" class="form-control input-sm" id="catLimit" placeholder="0.00"> | |
| </section> | |
| </section> | |
| <button type="submit" class="btn btn-sm btn-default">Add Category</button> | |
| </form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment