jsp--登录页面

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!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=UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>Estore商城登录页面</h1>
<form >
  <table>
    <tr>
     <td>用户名</td>
     <td><input type="text" name="username"/></td>
     </tr>
      <tr>
     <td>密码</td>
     <td><input type="password" name="password"/></td>
     </tr>
    
    <!--  记住用户名密码day9 -->
    
    <tr>
    <td><input type="submit" value="登录"></td>
     <td><input type="button" value="还没有账户,去注册!" onclick="location.href='regist.jsp';"/></td>
    </tr>
    
    </table>
    
</form>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/zzh8578741/article/details/79505317