<include file="Public:header" />
<!--content start-->
<div class="content">
<div class="login">
<div class="logZ"><img src="{$login.pic}" width="570" height="380" alt=""></div>
<div class="logY">
<div class="logYT"><span>欢迎登录</span><a href="/msg/registers.html">立即注册</a></div>
<div class="logYC">
<form name="form" action="/msg/dologins.html" method="post" onsubmit="return denglu();">
<div class="logYL"><img src="/Public/home/images/v_06.jpg" width="18" height="23" alt=""><input type="text" name="user" value="" placeholder="用户名"></div>
<div class="logYL"><img src="/Public/home/images/v_09.jpg" width="18" height="23" alt=""><input type="password" name="password" value="" placeholder="请输入密码"></div>
<div class="logch"><a href="/msg/forgots.html">忘记密码?</a></div>
<div class="logch"><input type="submit" name="" value="立即登录"></div>
</form>
</div>
</div>
</div>
</div>
<script>
function denglu(){
var regu=/^[0-9a-zA-Z]+$/;
if($("input[name=user]").val() == ""){
alert("注:用户名不能为空!");
return false;
}if(regu.test($("input[name=password]").val())==false){
alert("请输入正确的密码!");
return false;
}
}
</script>
<!-- content end -->
<include file="Public:footer" />
|