⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 login.jsp

📁 自己编写的jsp+mysql论坛系统,带后台系统.不是很完善,但是功能是完整的
💻 JSP
字号:
<%@ page language="java" contentType="text/html; charset=GBK"
	pageEncoding="GBK"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=GBK">
		<title>用户登录</title>
	</head>
	<body>
		<!-- 载入页头 -->
		<jsp:include page="./include/top.jsp"></jsp:include>
		<%
			int tmp = 0;
			String vcode = "";
			//生成验证码 1001-9999
			do {
				tmp = (int) (Math.random() * 10000 - 1);
			} while (tmp <= 1000);
			vcode = String.valueOf(tmp);
		%>
		<script type="text/javascript">
	function check(){
	if(form.username.value==""){
		alert("用户名不能为空!");
		return false;
	}
	if(form.password.value==""){
		alert("密码不能为空!");
		return false;
	}
	if(form.vcode.value==""){
		alert("验证码不能为空!");
		return false;
	}
	if((form.username.value.length<6)||(form.username.value.length>10)){
		alert("用户名长度在6到10个字符之间!");
		return false;
	}
	if((form.password.value.length<6)||(form.password.value.length>10)){
		alert("密码长度在6到10个字符之间!");
		return false;
	}
	if(form.vcode.value!=<%=vcode%>){
		alert("验证码不正确!");
		return false;
	}
	}
	</script>
		<%
			String username = "";
			if (null != session.getAttribute("login")) {
				username = session.getAttribute("login").toString();
		%>
		您已经登录,所登录的ID为<%=username%>
		<br>
		<a href="main.jsp">进入首页</a>
		<br>
		<%
			} else {
		%>
		<div align="center">
			用户登录
			<br>
		</div>
		<form method="post" action="login_Action.jsp" name="form"
			onsubmit="return check()">
			<p>
				用户名:
				<input type="text" maxlength="10" size="10" name="username">
				<a href="reg.jsp">注册帐号</a>
			</p>
			<p>
				密&nbsp; 码:
				<input type="password" maxlength="10" size="10" name="password">
				<br>
			</p>
			<p>
				验证码:
				<input type="text" maxlength="4" size="4" name="vcode">
				<font color="red"><%=vcode%></font>
			</p>
			<input type="submit" value="登录" name="submit">
			<input type="reset" value="重置" name="reset">
		</form>
		<%
			}
		%>
		<!-- 载入页尾 -->
		<jsp:include page="./include/foot.jsp"></jsp:include>
	</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -