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.

24 lines
856 B

<%@ page contentType="text/html;charset=UTF-8" language="java" pageEncoding="UTF-8" %>
<html>
<head>
<meta charset="UTF-8">
<title>添加用户</title>
</head>
<body>
<h3>添加用户信息</h3>
<form action="${pageContext.request.contextPath}/user/newadd" method="post">
用户编号:<input type="text" name="uid"><br><br>
用户名:<input type="text" name="username"><br><br>
密码:<input type="password" name="password"><br><br>
真实姓名:<input type="text" name="realName"><br><br>
手机号:<input type="text" name="phone"><br><br>
角色:
<select name="role">
<option value="管理员">管理员</option>
<option value="普通用户">普通用户</option>
</select><br><br>
<input type="submit" value="添加">
<input type="reset" value="重置">
</form>
</body>
</html>