blob: 1386a5c423e73c0162929122c2c53b3ced3380aa (
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
28
29
30
31
32
|
<div class="collaborators fixed mediaDrawer animate">
<span class="close">X</span>
<div>
<h2>Collaborators</h2>
<p>
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.
</p>
<form>
<input type="text" id="collaborator-email" name="email">
<input type="submit" id="collaborator-invite" value="Invite to this project">
</form>
<ul id="collaborator-list">
</ul>
</div>
</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>
<span class="role">owner</span>
</li>
</script>
|