signup_step2.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <page-header model="navModel"></page-header>
  2. <div class="page-container page-body">
  3. <div class="signup">
  4. <h3 class="p-b-1">You're almost there.</h3>
  5. <div class="p-b-1">
  6. We just need a couple of more bits of<br> information to finish creating your account.
  7. </div>
  8. <form name="signUpForm" class="login-form gf-form-group">
  9. <div class="gf-form" ng-if="verifyEmailEnabled">
  10. <span class="gf-form-label width-9">
  11. Email code<tip>Email verification code (sent to your email)</tip>
  12. </span>
  13. <input type="text" class="gf-form-input max-width-14" ng-model="formModel.code" required></input>
  14. </div>
  15. <div class="gf-form" ng-if="!autoAssignOrg">
  16. <span class="gf-form-label width-9">Org. name</span>
  17. <input type="text" name="orgName" class="gf-form-input max-width-14" ng-model="formModel.orgName" placeholder="Name your organization">
  18. </div>
  19. <div class="gf-form">
  20. <span class="gf-form-label width-9">Your name</span>
  21. <input type="text" name="name" class="gf-form-input max-width-14" ng-model="formModel.name" placeholder="(optional)">
  22. </div>
  23. <div class="gf-form">
  24. <span class="gf-form-label width-9">Email</span>
  25. <input type="text" class="gf-form-input max-width-14" required ng-model="formModel.username" placeholder="Email" autocomplete="off">
  26. </div>
  27. <div class="gf-form">
  28. <span class="gf-form-label width-9">Password</span>
  29. <input type="password" class="gf-form-input max-width-14" required ng-model="formModel.password" id="inputPassword" placeholder="password" autocomplete="off">
  30. </div>
  31. <div class="gf-form-button-row p-t-3">
  32. <button type="submit" class="btn btn-primary" ng-click="ctrl.submit();" ng-disabled="!signUpForm.$valid">
  33. Sign Up
  34. </button>
  35. <a href="login" class="btn btn-inverse">
  36. Back
  37. </a>
  38. </div>
  39. </form>
  40. </div>
  41. </div>