select_org.html 919 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <div class="container">
  2. <div class="signup-page-background">
  3. </div>
  4. <div class="login-content">
  5. <div class="login-branding">
  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="filter-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>
  33. </div>