mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-30 22:34:53 +00:00
16 lines
716 B
HTML
16 lines
716 B
HTML
<form id="repo-share-form" action="{{ post_url }}" method="post" name="repo-share-form" class="hide">
|
||
<label>共享给:</label><br />
|
||
<textarea id="email_or_group" name="email_or_group" placeholder="输入邮箱或群组"></textarea>
|
||
{% if allow_public_share %}
|
||
<p class="tip">Tip:输入 all 共享到公共资料</p>
|
||
{% endif %}
|
||
<select name="permission">
|
||
<option value="rw" selected="selected">可读写</option>
|
||
<option value="r">只可浏览</option>
|
||
</select>
|
||
<input id="repo_id" type="hidden" name="repo_id" value="" />
|
||
<p class="tip">{{ tips }}</p>
|
||
<p class="error hide"></p>
|
||
<input type="submit" value="提交" id="share-submit-btn" />
|
||
</form>
|