code025.jsp
1<%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3<!DOCTYPE html> 4<html> 5<head> 6<meta charset="UTF-8"> 7<title>登录页面</title> 8</head> 9<body> 10<form name="form1" method="post"> 11用户名:<input type="text" name="username" id="username" style="width:120px"> 12密码:<input type="password" name="pwd" id="pwd" style="width:120px;"> 13<br> 14<input type="submit" name="submit" value="提交"> 15</form> 16</body> 17</html>