12345678910111213141516171819202122232425262728293031323334 |
- <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.</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'}}">
- </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>
|