1
0

contribute.html 930 B

1234567891011121314151617181920212223242526
  1. <div ng-controller="ContributeCtrl">
  2. <div class="page-header">
  3. <h1>Contribute</h1>
  4. </div>
  5. <div class="row">
  6. <div class="span12" id="main">
  7. <p>Help make the game! Contribute words and make the game better.</p>
  8. <form ng-submit="submit()">
  9. <input type="text" ng-model="card.word" id="inputWord" placeholder="Word">
  10. <br>
  11. <input type="text" ng-model="card.taboos[0]" placeholder="Taboo Word">
  12. <br>
  13. <input type="text" ng-model="card.taboos[1]" placeholder="Taboo Word">
  14. <br>
  15. <input type="text" ng-model="card.taboos[2]" placeholder="Taboo Word">
  16. <br>
  17. <input type="text" ng-model="card.taboos[3]" placeholder="Taboo Word">
  18. <br>
  19. <input type="text" ng-model="card.taboos[4]" placeholder="Taboo Word">
  20. <hr>
  21. <input class="btn btn-primary" type="submit" value="Submit">
  22. </form>
  23. </div>
  24. </div>
  25. </div>