1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-14 23:46:49 +00:00
seahub/templates/snippets/repo_share_form.html

17 lines
750 B
HTML
Raw Normal View History

<form id="repo-share-form" action="{{ post_url }}" method="post" name="repo-share-form" class="hide">
{% if allow_public_share %}
<label>邮箱或群组,输入 all 共享到公共资料:</label><br />
{% else %}
2012-09-24 02:10:01 +00:00
<label>邮箱或群组:</label><br />
{% endif %}
2012-10-19 09:53:31 +00:00
<textarea id="email_or_group" name="email_or_group" placeholder="输入邮箱或群组"></textarea>
<select name="permission">
<option value="rw" selected="selected">可读写</option>
<option value="r">只可浏览</option>
</select>
<input id="repo_id" type="hidden" name="repo_id" value="" />
2012-09-06 09:38:29 +00:00
<p class="tip">{{ tips }}</p>
<p class="error hide"></p>
<input type="submit" value="提交" id="share-submit-btn" />
</form>