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.
18 lines
662 B
18 lines
662 B
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<html>
|
|
<head>
|
|
<title>添加用户</title>
|
|
</head>
|
|
<body>
|
|
<form action="${pageContext.request.contextPath}/user/addUser" method="post">
|
|
用户编号:<input type="text" name="userId"><br>
|
|
用户名:<input type="text" name="username"><br>
|
|
真实姓名:<input type="text" name="realName"><br>
|
|
手机号:<input type="text" name="phone"><br>
|
|
邮箱:<input type="text" name="email"><br>
|
|
创建时间:<input type="text" name="createTime"><br>
|
|
用户状态:<input type="text" name="status"><br>
|
|
<input type="submit" value="添加">
|
|
</form>
|
|
</body>
|
|
</html> |