Created
December 2, 2015 19:24
-
-
Save mekhami/e8bb562ad6f716f7b98d to your computer and use it in GitHub Desktop.
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
| <!-- HEADER AND TODO COUNT --> | |
| <div class="jumbotron text-center"> | |
| <h1>RSVP Here<span class="label label-info"></span></h1> | |
| </div> | |
| <!-- FORM TO CREATE TODOS --> | |
| <div id="rsvp-form" class="row"> | |
| <div class="col-sm-8 col-sm-offset-2 text-center"> | |
| <form> | |
| <div class="form-group"> | |
| <!-- BIND THIS VALUE TO formData.text IN ANGULAR --> | |
| <input type="text" class="form-control input-lg text-center" placeholder="Enter your RSVP code here" ng-model="formData.code"> | |
| </div> | |
| <!-- createToDo() WILL CREATE NEW TODOS --> | |
| <button type="submit" class="btn btn-primary btn-lg" ng-click="createRsvp()">Add</button> | |
| </form> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment