You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>添加用户</title>
</head>
<body>
<h2>用户信息添加</h2>
<%-- action路径要和Controller里的@RequestMapping对应 --%>
<form action="${pageContext.request.contextPath}/product/userAdd" method="post">
用户ID: <input type="text" name="id"><br>
用户名:<input type="text" name="username"><br>
性别:
<select name="gender">
<option value="男">男</option>
<option value="女">女</option>
</select><br>
手机号:<input type="text" name="phone"><br>
邮箱:<input type="text" name="email"><br>
<input type="submit" value="添加用户">
</form>
</body>
</html>