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.
29 lines
1.2 KiB
29 lines
1.2 KiB
6 months ago
|
<?php
|
||
|
$linkPrefix = '';
|
||
|
//多用户路径支持
|
||
|
if (!empty(FSC::$app['config']['multipleUserUriParse']) && !empty(FSC::$app['user_id'])) {
|
||
|
$linkPrefix = '/' . FSC::$app['user_id'];
|
||
|
}
|
||
|
?><main class="g_main_lay">
|
||
|
<div class="breadcrumbs">
|
||
|
<a href="<?=$linkPrefix?>/my/"><<返回</a>
|
||
|
</div>
|
||
|
<form class="g_form_style mt65" id="dir_new_form" action="" method="POST">
|
||
|
<div class="mb-3 pt20">
|
||
|
<label for="text_input_dir" class="form-label">账号昵称</label>
|
||
|
<input id="text_input_dir" name="dir" placeholder="请填写 2 - 5 个汉字" value="">
|
||
|
<p class="mt10">说明:<br>最多添加 <strong>10</strong> 个账号</p>
|
||
|
</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>
|
||
|
<span class="bt_text_JS">保存</span>
|
||
|
<div class="bt_loading_cover bt_class_JS elementNone"></div>
|
||
|
</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
</main>
|