You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
3.4 KiB

  1. {{template "base/head" .}}
  2. {{template "base/navbar" .}}
  3. <div id="body-nav" class="org-nav org-nav-auto">
  4. <div class="container clearfix">
  5. <div id="org-nav-wrapper">
  6. <ul class="nav nav-pills pull-right">
  7. <li><a href="#"><i class="fa fa-users"></i>Members
  8. <span class="label label-default">5</span></a>
  9. </li>
  10. <li class="active"><a href="#"><i class="fa fa-tags"></i>Teams
  11. <span class="label label-default">2</span></a>
  12. </li>
  13. </ul>
  14. <img class="pull-left org-small-logo" src="https://avatars3.githubusercontent.com/u/6656686?s=140" alt="" width="60"/>
  15. <div id="org-nav-info">
  16. <h2 class="org-name">Organization Name</h2>
  17. </div>
  18. </div>
  19. </div>
  20. </div>
  21. <div id="body" class="container">
  22. <div id="org">
  23. <form id="org-teams-create" class="form-horizontal card">
  24. <h3>Create new team</h3>
  25. <div class="form-group">
  26. <label class="col-md-2 control-label">Team Name<strong class="text-danger">*</strong></label>
  27. <div class="col-md-8">
  28. <input name="team" type="text" class="form-control" placeholder="Type your team name" value="" required="required">
  29. <span class="help-block">You'll use this name to mention this team in conversations.</span>
  30. </div>
  31. </div>
  32. <div class="form-group">
  33. <label class="col-md-2 control-label">Description</label>
  34. <div class="col-md-8">
  35. <input name="desc" type="text" class="form-control" placeholder="Type your team description (optional)" value="">
  36. </div>
  37. </div>
  38. <div class="form-group">
  39. <label class="col-md-2 control-label">Permission</label>
  40. <div class="col-md-8">
  41. <div class="radio">
  42. <label>
  43. <input type="radio" name="permission" value="pull" checked="">
  44. <strong>Read & Clone</strong>
  45. </label>
  46. <p>This team will be able to view and clone its repositories.</p>
  47. </div>
  48. <div class="radio">
  49. <label>
  50. <input type="radio" name="permission" value="push">
  51. <strong>Push, Read & Clone</strong>
  52. </label>
  53. <p>This team will be able to read its repositories, as well as push to them.</p>
  54. </div>
  55. <div class="radio">
  56. <label>
  57. <input type="radio" name="permission" value="admin">
  58. <strong>Collaboration, Push, Read & Clone</strong>
  59. </label>
  60. <p>This team will be able to push/pull to its repositories, as well as add other collaborators to them.</p>
  61. </div>
  62. </div>
  63. </div>
  64. <hr/>
  65. <div class="form-group">
  66. <label class="col-md-2">&nbsp;</label>
  67. <div class="col-md-8">
  68. <button class="btn btn-primary">Create team</button>
  69. </div>
  70. </div>
  71. </form>
  72. </div>
  73. </div>
  74. {{template "base/footer" .}}