Source code of filesite.io.
https://filesite.io
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.
42 lines
1.9 KiB
42 lines
1.9 KiB
7 months ago
|
<main class="g_main_lay">
|
||
1 year ago
|
<form class="add_video_form g_form_style" id="add_video_form" action="" method="get">
|
||
|
<div class="">
|
||
7 months ago
|
<label for="text_input_link" class="form-label">视频分享网址/文字</label>
|
||
|
<textarea rows="5" id="text_input_link" name="share_content" placeholder="请粘贴从视频App或网站复制的分享网址/文字(例如在抖音App里,先点击视频的分享图标,再点:复制链接,然后在这里粘贴)"></textarea>
|
||
6 months ago
|
<p class="mt10">
|
||
|
目前只支持:
|
||
|
<?php
|
||
|
$supportPlatforms = FSC::$app['config']['tajian']['supportedPlatforms'];
|
||
|
echo implode(',', array_slice($supportPlatforms, 0, -1));
|
||
|
?>
|
||
|
,如需支持其它平台或任意网址,请<a href="mailto://[email protected]">Email联系</a>。
|
||
|
</p>
|
||
1 year ago
|
</div>
|
||
6 months ago
|
<div class="mb-3 mt20">
|
||
7 months ago
|
<label class="form-label">视频分类</label>
|
||
1 year ago
|
<select name="tag">
|
||
|
<option value="">选分类</option>
|
||
|
<?php
|
||
|
if (!empty($viewData['tags'])) { //显示tags分类
|
||
|
foreach($viewData['tags'] as $id => $item) {
|
||
|
echo <<<eof
|
||
|
<option value="{$item['name']}">{$item['name']}</option>
|
||
|
eof;
|
||
|
}
|
||
|
}
|
||
|
?>
|
||
|
</select>
|
||
|
</div>
|
||
|
<div class="avform_bt vercenter">
|
||
|
<button class="jsbtn" aria-label="提交" type="button">
|
||
|
<div class="loading_bt bt_class_JS elementNone verMiddle">
|
||
|
<svg viewBox="25 25 50 50">
|
||
|
<circle cx="50" cy="50" r="20"></circle>
|
||
|
</svg>
|
||
|
</div>
|
||
7 months ago
|
<span class="bt_text_JS">保存</span>
|
||
1 year ago
|
<div class="bt_loading_cover bt_class_JS elementNone"></div>
|
||
|
</button>
|
||
|
</div>
|
||
|
</form>
|
||
7 months ago
|
</main>
|