1234567891011121314151617181920212223242526272829303132333435363738 |
- <div ng-controller="ContributeCtrl">
- <div class="page-header">
- <h1>Contribute</h1>
- </div>
- <div class="row">
- <div class="span10" id="main">
- <h3>Add a card</h3>
- <p>
- Help make the game! Contribute words and make the game better. Also, please
- original work only. Don't just blindly copy a card from any of the Taboo games.
- </p>
- <form ng-submit="submit()">
- <input type="text" ng-model="card.word" id="inputWord" placeholder="Word" required>
- <br>
- <input type="text" ng-model="card.taboos[0]" placeholder="Taboo Word" required>
- <br>
- <input type="text" ng-model="card.taboos[1]" placeholder="Taboo Word" required>
- <br>
- <input type="text" ng-model="card.taboos[2]" placeholder="Taboo Word" required>
- <br>
- <input type="text" ng-model="card.taboos[3]" placeholder="Taboo Word" required>
- <br>
- <input type="text" ng-model="card.taboos[4]" placeholder="Taboo Word" required>
- <hr>
- <input ng-disabled="submitting" class="btn btn-primary" type="submit" value="{{submitting ? 'Submitting...' : 'Submit'}}">
- <span ng-show="thanks">Thank you!</span>
- </form>
- </div>
- <div class="span4">
- <h3>Help code</h3>
- <p>
- Want to help code instead? Fork the <a href="https://github.com/thatsmydoing/gamenchat">repo</a> or submit
- an <a href="https://github.com/thatsmydoing/gamenchat/issues">issue</a>.
- </p>
- </div>
- </div>
- </div>
|