12345678910111213141516171819202122232425 |
- <%//注册页面 %>
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Insert title here</title>
- </head>
- <body>
- <h3>注册页面</h3>
- <form action="Register_test.jsp" method="post" enctype="mutipart/form-data">
- username:<input type="text" name="username">
- <p>
- class:<input type="text" name="class">
- <p>
- password:<input type="password" name="password">
- <p>
- sex: <input type="radio" name="sex" value="男" checked />男 <input
- type="radio" name="sex" value="女" />女
- <p>
- <input type="submit" value="注册">
- </form>
- </body>
- </html>
|