A simple file sharing site with an easy to use API and online panel.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
575B

  1. <div id="register-form" class="form">
  2. <h3>Register</h3>
  3. <fieldset>
  4. <form ng-submit="register()">
  5. <input id="username" placeholder="Username" class="form-control" type="text" ng-model="username"/>
  6. <input id="password" placeholder="Password" class="form-control" type="password" ng-model="password"/>
  7. <input id="invite" placeholder="Invite Code" class="form-control" type="text" ng-model="invite"/>
  8. <button type="submit" class="btn" ng-class="{shake: error}">Submit</button>
  9. </form>
  10. </fieldset>
  11. </div>