create_team.html 950 B

1234567891011121314151617181920212223242526
  1. <page-header model="ctrl.navModel"></page-header>
  2. <div class="page-container page-body" ng-cloak>
  3. <h3 class="page-sub-heading">New Team</h3>
  4. <form name="ctrl.saveForm" class="gf-form-group" ng-submit="ctrl.create()">
  5. <div class="gf-form max-width-30">
  6. <span class="gf-form-label width-10">Name</span>
  7. <input type="text" required ng-model="ctrl.name" class="gf-form-input max-width-22" give-focus="true">
  8. </div>
  9. <div class="gf-form max-width-30">
  10. <span class="gf-form-label width-10">
  11. Email
  12. <info-popover mode="right-normal">
  13. This is optional and is primarily used for allowing custom team avatars.
  14. </info-popover>
  15. </span>
  16. <input class="gf-form-input max-width-22" type="email" ng-model="ctrl.email" placeholder="email@test.com">
  17. </div>
  18. <div class="gf-form-button-row">
  19. <button type="submit" class="btn btn-success width-12">
  20. <i class="fa fa-save"></i> Create
  21. </button>
  22. </div>
  23. </form>
  24. </div>