contribute.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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" ng-change="check()" required>
  14. <span ng-show="exists">We already have this word</span>
  15. <br>
  16. <input type="text" ng-model="card.taboos[0]" placeholder="Taboo Word" required>
  17. <br>
  18. <input type="text" ng-model="card.taboos[1]" placeholder="Taboo Word" required>
  19. <br>
  20. <input type="text" ng-model="card.taboos[2]" placeholder="Taboo Word" required>
  21. <br>
  22. <input type="text" ng-model="card.taboos[3]" placeholder="Taboo Word" required>
  23. <br>
  24. <input type="text" ng-model="card.taboos[4]" placeholder="Taboo Word" required>
  25. <hr>
  26. <input ng-disabled="submitting" class="btn btn-primary" type="submit" value="{{submitting ? 'Submitting...' : 'Submit'}}">
  27. <span ng-show="thanks">Thank you!</span>
  28. </form>
  29. </div>
  30. <div class="span4">
  31. <h3>Help code</h3>
  32. <p>
  33. Want to help code instead? Fork the <a href="https://github.com/thatsmydoing/gamenchat">repo</a> or submit
  34. an <a href="https://github.com/thatsmydoing/gamenchat/issues">issue</a>.
  35. </p>
  36. </div>
  37. </div>
  38. </div>