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.

login.html 944B

1234567891011121314151617181920212223242526
  1. <!-- Page Content -->
  2. <div class="container">
  3. <div class="row">
  4. <div class="col-sm-offset-4 col-sm-4">
  5. <h1 class="text-center">Login</h1>
  6. <form ng-submit="login()" lu-busy="loginForm">
  7. <label for="login">Username</label><br />
  8. <input id="login" ng-model="username" class="form-control" required/>
  9. <label for="password">Password</label><br />
  10. <input id="password" ng-model="password" type="password" class="form-control" required/>
  11. <br />
  12. <div class="col-sm-12 center-block">
  13. <button type="submit" class="btn btn-primary center-block">Login</button>
  14. </div>
  15. <br />
  16. <div>
  17. <span class="error" ng-show="errorString != null">{{ errorString }}</span>
  18. </div>
  19. </form>
  20. </div>
  21. </div>
  22. </div>