contribute.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  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>
  9. Help make the game! Contribute words and make the game better. Also, please
  10. original work only. Don't just blindly copy a card from any of the Taboo games.
  11. </p>
  12. <form ng-submit="submit()">
  13. <input type="text" ng-model="card.word" id="inputWord" placeholder="Word" required>
  14. <br>
  15. <input type="text" ng-model="card.taboos[0]" placeholder="Taboo Word" required>
  16. <br>
  17. <input type="text" ng-model="card.taboos[1]" placeholder="Taboo Word" required>
  18. <br>
  19. <input type="text" ng-model="card.taboos[2]" placeholder="Taboo Word" required>
  20. <br>
  21. <input type="text" ng-model="card.taboos[3]" placeholder="Taboo Word" required>
  22. <br>
  23. <input type="text" ng-model="card.taboos[4]" placeholder="Taboo Word" required>
  24. <hr>
  25. <input ng-disabled="submitting" class="btn btn-primary" type="submit" value="{{submitting ? 'Submitting...' : 'Submit'}}">
  26. </form>
  27. </div>
  28. <div class="span4">
  29. <h3>Help code</h3>
  30. <p>
  31. Want to help code instead? Fork the <a href="https://github.com/thatsmydoing/gamenchat">repo</a> or submit
  32. an <a href="https://github.com/thatsmydoing/gamenchat/issues">issue</a>.
  33. </p>
  34. </div>
  35. </div>
  36. </div>