signup_invited.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  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 Grafana and the organization <span class="highlight-word">{{contextSrv.user.orgName}}</span></br>Please complete the following and choose a password to accept your invitation and continue:
  6. </div>
  7. <form name="inviteForm" class="login-form gf-form-group">
  8. <div class="gf-form">
  9. <span class="gf-form-label width-7">Email</span>
  10. <input type="email" name="email" class="gf-form-input max-width-21" required ng-model='formModel.email' placeholder="Email">
  11. </div>
  12. <div class="gf-form">
  13. <span class="gf-form-label width-7">Name</span>
  14. <input type="text" name="name" class="gf-form-input max-width-21" ng-model='formModel.name' placeholder="Name (optional)">
  15. </div>
  16. <div class="gf-form">
  17. <span class="gf-form-label width-7">Username</span>
  18. <input type="text" name="username" class="gf-form-input max-width-21" required ng-model='formModel.username' placeholder="Username">
  19. </div>
  20. <div class="gf-form">
  21. <span class="gf-form-label width-7">Password</span>
  22. <input type="password" name="password" class="gf-form-input max-width-21" required ng-model="formModel.password" id="inputPassword" placeholder="password">
  23. </div>
  24. <div class="gf-form-button-row">
  25. <button type="submit" class="btn btn-primary" ng-click="submit();" ng-disable="!inviteForm.$valid">
  26. Sign Up
  27. </button>
  28. </div>
  29. </form>
  30. </div>
  31. <footer />