应用开发者
Discuz! 运维
- 贡献
- 186 点
- 金币
- 672 个

|
发表于 2024-2-2 09:07:00
|
查看全部
以X3.5默认模板为例
电脑版:
- template/default/home/spacecp_credit_base.htm
复制代码
搜索
- <tr>
- <th><span class="rq">*</span>{lang transfer_login_password}</th>
- <td colspan="2"><input type="password" name="password" class="px" value="" size="20" /></td>
- </tr>
复制代码
删除
手机版:
- template/default/touch/home/spacecp_credit_exchange.htm
复制代码
搜索
- <li class="mli">
- <input type="password" name="password" class="px" value="" placeholder="{lang transfer_login_password}" />
- </li>
复制代码
删除
后端PHP部分:
打开
- source/include/spacecp/spacecp_credit_base.php
复制代码
搜索
往上找- loaducenter();
- $ucresult = uc_user_login(addslashes($_G['username']), $_GET['password']);
- list($tmp['uid']) = $ucresult;
- if($tmp['uid'] <= 0) {
- showmessage('credits_password_invalid', '', array(), array('showdialog' => 1, 'showmsg' => true, 'closetime' => true));
- }
复制代码
删除 |
|