2017-10-11 10:15:19 -04:00
|
|
|
<form ng-submit="register()">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="username">Username</label>
|
|
|
|
<input id="username" class="form-control" type="text" ng-model="username"/>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="password">Password</label>
|
|
|
|
<input id="password" class="form-control" type="password" ng-model="password"/>
|
|
|
|
</div>
|
2017-10-11 12:55:46 -04:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="invite">Invite Code</label>
|
|
|
|
<input id="invite" class="form-control" type="text" ng-model="invite"/>
|
|
|
|
</div>
|
2017-10-11 10:15:19 -04:00
|
|
|
<button type="submit" class="btn">Register</button>
|
|
|
|
</form>
|