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
<?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="nickname_form" action="" method="POST"> |
|
<div class="mb-3 pt20"> |
|
<label for="text_input_nickname" class="form-label">昵称</label> |
|
<input id="text_input_nickname" name="nickname" placeholder="请填写 2 - 5 个汉字" value="<?=$viewData['nickname']?>"> |
|
<p class="mt10">请填写 2 - 5 个汉字</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>
|