Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 想把用户名、密码框去掉,只保留QQ、登录、注册三个按钮

[复制链接]
桃源老赵 发表于 2012-4-5 10:55:57 | 显示全部楼层 |阅读模式
问题描述
适用版本: Discuz! X2
浏览器: IE8 
使用模板: 其他模板(请在回帖中说明模板的名称或者是模板的下载地址)
BUG地址: http://www.tzxqw.com/
  1. <!--{if CURMODULE != 'logging'}-->
  2.         <script type="text/javascript" src="{$_G[setting][jspath]}logging.js?{VERHASH}"></script>
  3.         <form method="post" autocomplete="off" id="lsform" action="member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes&lssubmit=yes" onsubmit="return lsSubmit()">
  4.                 <span id="return_ls" style="display:none"></span>
  5.                 <div class="toweto-lg">
  6.                         <table cellspacing="0" cellpadding="0">
  7.                                 <tr>
  8.                                         <!--{if !$_G['setting']['autoidselect']}-->                                       
  9.                                                 <td><div class="toweto-lgq"><!--{hook/global_login_extra}--></div></td>
  10.                                                 <td><input type="text" name="username" id="ls_username" autocomplete="off" class="toweto-t" tabindex="901" /></td>
  11.                                         <!--{else}-->
  12.                                                 <td><div class="toweto-lgq"><!--{hook/global_login_extra}--></div></td>
  13.                                                 <td><input type="text" name="username" id="ls_username" class="toweto-t" {if $_G['setting']['autoidselect']} value="UID/{lang username}/Email" onfocus="if(this.value == 'UID/{lang username}/Email'){this.value = '';this.className = 'toweto-t';}" onblur="if(this.value == ''){this.value = 'UID/{lang username}/Email';this.className = 'toweto-t';}"{/if} tabindex="901" /></td>
  14.                                         <!--{/if}-->

  15.                                         <td><input type="password" name="password" id="ls_password" class="toweto-t" autocomplete="off" tabindex="902" /></td>
  16.                                         <td><button type="submit" class="toweto-bt" tabindex="904" onmouseover="showMenu({'ctrlid':this.id,'pos':'43'});" id="v2_lgi"><em>{lang login}</em></button></td>
  17.                                         <td class="toweto-a1"><a href="member.php?mod={$_G[setting][regname]}">$_G['setting']['reglinkname']</a></td>
  18.                                 </tr>
  19.                         </table>
  20.                         <input type="hidden" name="quickforward" value="yes" />
  21.                         <input type="hidden" name="handlekey" value="ls" />
  22.                 </div>               
  23.                 <ul id="v2_lgi_menu" class="toweto-lga" style="display: none;">
  24. <li><label for="ls_cookietime"><input type="checkbox" name="cookietime" id="ls_cookietime" class="pc" value="2592000" tabindex="903" />{lang login_permanent}</label></li>
  25. <li><a href="javascript:;" onclick="showWindow('login', 'member.php?mod=logging&action=login&viewlostpw=1')">{lang forgotpw}</a></li>
  26. </ul>                <tr><!--{hook/global_login_extra}-->               
  27.         </form>
  28. <!--{/if}-->
复制代码
想把用户名、密码框去掉,只保留QQ、登录、注册三个按钮,上面login_simple.htm的代码去掉啥?请求协助



本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
phoenixlxa 发表于 2012-4-5 15:11:59 | 显示全部楼层
本帖最后由 phoenixlxa 于 2012-4-5 15:14 编辑

红色为修改部分!
<!--{if CURMODULE != 'logging'}-->
        <script type="text/javascript" src="{$_G[setting][jspath]}logging.js?{VERHASH}"></script>
        <form method="post" autocomplete="off" id="lsform" action="member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes&lssubmit=yes">
                <span id="return_ls" style="display:none"></span>
                <div class="toweto-lg">
                        <table cellspacing="0" cellpadding="0">
                                <tr>
                                        <!--{if !$_G['setting']['autoidselect']}-->                                       
                                                <td><div class="toweto-lgq"><!--{hook/global_login_extra}--></div></td>
                                                <td style="display:none"><input type="text" name="username" id="ls_username" autocomplete="off" class="toweto-t" tabindex="901" /></td>
                                        <!--{else}-->
                                                <td><div class="toweto-lgq"><!--{hook/global_login_extra}--></div></td>
                                                <td><input type="text" name="username" id="ls_username" class="toweto-t" {if $_G['setting']['autoidselect']} value="UID/{lang username}/Email"{/if} tabindex="901" /></td>
                                        <!--{/if}-->

                                        <td style="display:none"><input type="password" name="password" id="ls_password" class="toweto-t" autocomplete="off" tabindex="902" /></td>
                                        <td><button type="submit" class="toweto-bt" tabindex="904" id="v2_lgi"><em>{lang login}</em></button></td>
                                        <td class="toweto-a1"><a href="member.php?mod={$_G[setting][regname]}">$_G['setting']['reglinkname']</a></td>
                                </tr>
                        </table>
                        <input type="hidden" name="quickforward" value="yes" />
                        <input type="hidden" name="handlekey" value="ls" />
                </div>               
                <ul id="v2_lgi_menu" class="toweto-lga" style="display: none;">
<li><label for="ls_cookietime"><input type="checkbox" name="cookietime" id="ls_cookietime" class="pc" value="2592000" tabindex="903" />{lang login_permanent}</label></li>
<li><a href="javascript:;">{lang forgotpw}</a></li>
</ul>                <tr><!--{hook/global_login_extra}-->               
        </form>
<!--{/if}-->



评分

1

查看全部评分

回复

使用道具 举报

 楼主| 桃源老赵 发表于 2012-4-5 15:52:49 | 显示全部楼层
本帖最后由 桃源老赵 于 2012-4-5 15:54 编辑
phoenixlxa 发表于 2012-4-5 15:11
红色为修改部分!

        

感谢协助{:soso_e163:}

老大已经成功去掉了一个{:soso_e102:}
还有一个{:soso_e151:}
麻烦再次协助{:soso_e152:}





还有,那个qq图标能不能向右边靠近一点




.

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

 楼主| 桃源老赵 发表于 2012-4-5 16:04:56 | 显示全部楼层
有个问题了,去掉后无法填写用户名和密码了

如图



这样把老大,不要去掉了,能不能在两个矿前面添加“用户名”“密码”



.

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

网牛主机 发表于 2012-4-5 17:35:06 | 显示全部楼层
我是来学习的!
回复

使用道具 举报

phoenixlxa 发表于 2012-4-6 10:44:33 | 显示全部楼层
桃源老赵 发表于 2012-4-5 16:04
有个问题了,去掉后无法填写用户名和密码了

如图

“能不能在两个矿前面添加‘用户名’‘密码’”——你说的是什么意思?
回复

使用道具 举报

 楼主| 桃源老赵 发表于 2012-4-6 13:10:57 | 显示全部楼层
phoenixlxa 发表于 2012-4-6 10:44
“能不能在两个矿前面添加‘用户名’‘密码’”——你说的是什么意思?

就是 在这两个输入框前面加“用户名”和“密码”
如图


本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

 楼主| 桃源老赵 发表于 2012-4-6 13:17:44 | 显示全部楼层
phoenixlxa 发表于 2012-4-6 10:44
“能不能在两个矿前面添加‘用户名’‘密码’”——你说的是什么意思?

风格文件包是这个,请帮忙改一改{:soso_e100:}

其他都很正常,就是想要这样的登录横排:



本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

phoenixlxa 发表于 2012-4-6 15:21:42 | 显示全部楼层
本帖最后由 phoenixlxa 于 2012-4-6 15:22 编辑

红字为修改部分
<!--{if CURMODULE != 'logging'}-->
        <script type="text/javascript" src="{$_G[setting][jspath]}logging.js?{VERHASH}"></script>
        <form method="post" autocomplete="off" id="lsform" action="member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes&lssubmit=yes">
                <span id="return_ls" style="display:none"></span>
                <div class="toweto-lg">
                        <table cellspacing="0" cellpadding="0">
                                <tr>
                                        <td>用户名</td>

                                        <td><input type="text" name="username" id="ls_username" class="toweto-t" {if $_G['setting']['autoidselect']} value="UID/{lang username}/Email"{/if} tabindex="901" /></td>
                                        <td>密码</td><td><input type="password" name="password" id="ls_password" class="toweto-t" autocomplete="off" tabindex="902" /></td>
                                        <td><button type="submit" class="toweto-bt" tabindex="904" id="v2_lgi"><em>{lang login}</em></button></td>
                                        <td class="toweto-a1"><a href="member.php?mod={$_G[setting][regname]}">$_G['setting']['reglinkname']</a></td>
                                </tr>
                        </table>
                        <input type="hidden" name="quickforward" value="yes" />
                        <input type="hidden" name="handlekey" value="ls" />
                </div>               
                <ul id="v2_lgi_menu" class="toweto-lga" style="display: none;">
<li><label for="ls_cookietime"><input type="checkbox" name="cookietime" id="ls_cookietime" class="pc" value="2592000" tabindex="903" />{lang login_permanent}</label></li>
<li><a href="javascript:;">{lang forgotpw}</a></li>
</ul>                <tr><!--{hook/global_login_extra}-->               
        </form>
<!--{/if}-->
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-27 17:38 , Processed in 0.033450 second(s), 8 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表