DianThink
DianThink的个人博客
博客首页
关于博客
OneThink代码
博客介绍
给我留言
点想博客
格言:每个优秀的人,都有一段沉默的时光,那段时光,是付出了很多努力,却得不到结果的日子,我们把它叫做扎根。——习主席
OnethinkHome模块模板login.html
<pre class="prettyprint linenums lang-html"><extend name="Base/common" /> <block name="header"> <header class="jumbotron subhead" id="overview"> <div class="container"> <h2>用户登录</h2> <p><span><span class="pull-left"><span>还没有账号? <a href="{:U('User/register')}">立即注册</a></span> </span></p> </div> </header> </block> <block name="body"> <section> <div class="span12"> <form class="login-form" action="__SELF__" method="post"> <div class="control-group"> <label class="control-label" for="inputEmail">用户名</label> <div class="controls"> <input type="text" id="inputEmail" class="span3" placeholder="请输入用户名" ajaxurl="/member/checkUserNameUnique.html" errormsg="请填写1-16位用户名" nullmsg="请填写用户名" datatype="*1-16" value="" name="username"> </div> </div> <div class="control-group"> <label class="control-label" for="inputPassword">密码</label> <div class="controls"> <input type="password" id="inputPassword" class="span3" placeholder="请输入密码" errormsg="密码为6-20位" nullmsg="请填写密码" datatype="*6-20" name="password"> </div> </div> <div class="control-group"> <label class="control-label" for="inputPassword">验证码</label> <div class="controls"> <input type="text" id="inputPassword" class="span3" placeholder="请输入验证码" errormsg="请填写5位验证码" nullmsg="请填写验证码" datatype="*5-5" name="verify"> </div> </div> <div class="control-group"> <label class="control-label"></label> <div class="controls"> <img class="verifyimg reloadverify" alt="点击切换" src="{:U('verify')}" style="cursor:pointer;"> </div> <div class="controls Validform_checktip text-warning"></div> </div> <div class="control-group"> <div class="controls"> <label class="checkbox"> <input type="checkbox"> 自动登陆 </label> <button type="submit" class="btn">登 陆</button> </div> </div> </form> </div> </section> </block> <block name="side"> </block> <block name="script"> <script type="text/javascript"> $(document) .ajaxStart(function(){ $("button:submit").addClass("log-in").attr("disabled", true); }) .ajaxStop(function(){ $("button:submit").removeClass("log-in").attr("disabled", false); }); $("form").submit(function(){ var self = $(this); $.post(self.attr("action"), self.serialize(), success, "json"); return false; function success(data){ if(data.status){ window.location.href = data.url; } else { self.find(".Validform_checktip").text(data.info); //刷新验证码 $(".reloadverify").click(); } } }); $(function(){ var verifyimg = $(".verifyimg").attr("src"); $(".reloadverify").click(function(){ if( verifyimg.indexOf('?')>0){ $(".verifyimg").attr("src", verifyimg+'&random='+Math.random()); }else{ $(".verifyimg").attr("src", verifyimg.replace(/?.*$/,'')+'?'+Math.random()); } }); }); </script> </block> </pre>
Key:
OneThinks
ThinkPHP3.2.3
ThinkPHP5.0
OnethinkHome模块模板login.html
共有
0
条评论
发表评论标注
取消回复
电子邮件地址不会被公开,必填项已用
*
标注
评论
*
昵称
*
邮件
*
网址(请加:https(http)://)
有人回复时邮件通知我
现在起
让您的博客焕然一新
我的博客
微信
近期文章
markdown编辑器
OnethinkHome模块模板footer.html
OnethinkHome模块模板body.html
OnethinkHome模块模板register.html
OnethinkHome模块模板profile.html
标签导航
OneThinks
ThinkPHP3.2.3
ThinkPHP5.0
发表评论标注 取消回复
电子邮件地址不会被公开,必填项已用* 标注