Last active
February 27, 2016 19:27
-
-
Save mekhami/f957a2bfc578af3ec33c 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
| <div class="jumbotron text-center"> | |
| <h1>RSVP Here<span class="label label-info"></span></h1> | |
| </div> | |
| <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> | |
| <button type="submit" class="btn btn-primary btn-lg" ng-click="createRsvp()">Add</button> | |
| </form> | |
| </div> | |
| </div> |
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
| <html> | |
| <head> | |
| <!-- META --> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"><!-- Optimize mobile viewport --> | |
| <title>Node/Angular Todo App</title> | |
| <!-- SCROLLS --> | |
| <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"><!-- load bootstrap --> | |
| <style> | |
| html { overflow-y:scroll; } | |
| body { padding-top:50px; } | |
| #rsvp-list { margin-bottom:30px; } | |
| </style> | |
| <!-- SPELLS --> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script><!-- load jquery --> | |
| <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script><!-- load angular --> | |
| <script src="js/app.js"></script> | |
| <base href="/"> | |
| </head> | |
| <body ng-app="myApp"> | |
| <div class="container"> | |
| <div ng-view></div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment