1
0

contribute.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <div ng-controller="ContributeCtrl">
  2. <div class="page-header">
  3. <h1>Contribute</h1>
  4. </div>
  5. <div class="row">
  6. <div class="span10" id="main">
  7. <h3>Add a card</h3>
  8. <p>Help make the game! Contribute words and make the game better.</p>
  9. <form ng-submit="submit()">
  10. <input type="text" ng-model="card.word" id="inputWord" placeholder="Word" required>
  11. <br>
  12. <input type="text" ng-model="card.taboos[0]" placeholder="Taboo Word" required>
  13. <br>
  14. <input type="text" ng-model="card.taboos[1]" placeholder="Taboo Word" required>
  15. <br>
  16. <input type="text" ng-model="card.taboos[2]" placeholder="Taboo Word" required>
  17. <br>
  18. <input type="text" ng-model="card.taboos[3]" placeholder="Taboo Word" required>
  19. <br>
  20. <input type="text" ng-model="card.taboos[4]" placeholder="Taboo Word" required>
  21. <hr>
  22. <input ng-disabled="submitting" class="btn btn-primary" type="submit" value="{{submitting ? 'Submitting...' : 'Submit'}}">
  23. </form>
  24. </div>
  25. <div class="span4">
  26. <h3>Help code</h3>
  27. <p>
  28. Want to help code instead? Fork the <a href="https://github.com/thatsmydoing/gamenchat">repo</a> or submit
  29. an <a href="https://github.com/thatsmydoing/gamenchat/issues">issue</a>.
  30. </p>
  31. </div>
  32. </div>
  33. </div>