1
0

contribute.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <span ng-show="thanks">Thank you!</span>
  27. </form>
  28. </div>
  29. <div class="span4">
  30. <h3>Help code</h3>
  31. <p>
  32. Want to help code instead? Fork the <a href="https://github.com/thatsmydoing/gamenchat">repo</a> or submit
  33. an <a href="https://github.com/thatsmydoing/gamenchat/issues">issue</a>.
  34. </p>
  35. </div>
  36. </div>
  37. </div>