signup_invited.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <page-header model="navModel"></page-header>
  2. <div class="page-container page-body">
  3. <h3 class="page-sub-heading">Hello {{greeting}}.</h3>
  4. <div class="modal-tagline p-b-2">
  5. <em>{{invitedBy}}</em> has invited you to join EnergyLink
  6. <!-- <span class="highlight-word">{{contextSrv.user.orgName}}</span> -->
  7. </br>Please complete the following and choose a password to accept your invitation and continue:
  8. </div>
  9. <form name="inviteForm" class="login-form gf-form-group">
  10. <div class="gf-form">
  11. <span class="gf-form-label width-7">Email</span>
  12. <input type="email" name="email" class="gf-form-input max-width-21" required ng-model='formModel.email'
  13. placeholder="Email">
  14. </div>
  15. <div class="gf-form">
  16. <span class="gf-form-label width-7">Name</span>
  17. <input type="text" name="name" class="gf-form-input max-width-21" ng-model='formModel.name'
  18. placeholder="Name (optional)">
  19. </div>
  20. <div class="gf-form">
  21. <span class="gf-form-label width-7">Username</span>
  22. <input type="text" name="username" class="gf-form-input max-width-21" required ng-model='formModel.username'
  23. placeholder="Username">
  24. </div>
  25. <div class="gf-form">
  26. <span class="gf-form-label width-7">Password</span>
  27. <input type="password" name="password" class="gf-form-input max-width-21" required ng-model="formModel.password"
  28. id="inputPassword" placeholder="password">
  29. </div>
  30. <div class="gf-form-button-row">
  31. <button type="submit" class="btn btn-primary" ng-click="submit();" ng-disable="!inviteForm.$valid">
  32. Sign Up
  33. </button>
  34. </div>
  35. </form>
  36. </div>