select_org.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <div class="container">
  2. <div class="signup-page-background">
  3. </div>
  4. <div class="login-box">
  5. <div class="login-box-logo">
  6. <img src="img/logo_transparent_200x75.png">
  7. </div>
  8. <div class="invite-box">
  9. <h3>
  10. <i class="fa fa-users"></i>&nbsp;
  11. Change active organization
  12. </h3>
  13. <div class="modal-tagline">
  14. You have been added to another Organization <br>
  15. due to an open invitation!
  16. <br><br>
  17. Please select which organization you want to <br>
  18. use right now (you can change this later at any time).
  19. </div>
  20. <div style="display: inline-block; width: 400px; margin: 30px 0">
  21. <table class="grafana-options-table">
  22. <tr ng-repeat="org in orgs">
  23. <td class="nobg max-width-btns">
  24. <a ng-click="setUsingOrg(org)" class="btn btn-inverse">
  25. {{org.name}} ({{org.role}})
  26. </a>
  27. </td>
  28. </tr>
  29. </table>
  30. </div>
  31. </div>
  32. <div class="row" style="margin-top: 50px">
  33. <div class="version-footer text-center small">
  34. Grafana version: {{buildInfo.version}}, commit: {{buildInfo.commit}},
  35. build date: {{buildInfo.buildstamp | date: 'yyyy-MM-dd HH:mm:ss' }}
  36. </div>
  37. </div>
  38. </div>
  39. </div>