Skip to content

Instantly share code, notes, and snippets.

@mekhami
Created December 2, 2015 19:24
Show Gist options
  • Select an option

  • Save mekhami/e8bb562ad6f716f7b98d to your computer and use it in GitHub Desktop.

Select an option

Save mekhami/e8bb562ad6f716f7b98d to your computer and use it in GitHub Desktop.
<!-- 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