summaryrefslogtreecommitdiff
path: root/views/controls/editor/collaborators.ejs
blob: 035507b696d719ddc2e29417b7b3890f1471df23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<div class="collaborators fixed mediaDrawer animate">
	<span class="close">X</span>

  <div>
    To invite others to contribute to this project, submit their email address below. They'll receive an email with instructions to join this blog and register if they're not a Vvalls user yet.
  </div>

  <form>
    <input type="text" id="collaborator-email">
    <button id="collaborator-invite">Invite to this project</button>
  </form>
  
  <ul id="collaborator-list">
  </ul>

</div>

<script type="text/html" id="collaborator-template">
  <li>
    <a class="user">
      <div class="avatar"></div>
      <span class="username"></span>
    </a>
    <span class="email"></span>
    <button data-role="destroy-collaborator" class="remove-user">Remove</button>
  </li>
</script>