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
754 B

This file contains ambiguous Unicode characters!

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.

<%--
Created by IntelliJ IDEA.
User: 16851
Date: 2026/5/13
Time: 9:44
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>添加用户</title>
</head>
<body>
<h3>校园兼职网 - 添加用户</h3>
<form action="${pageContext.request.contextPath}/user/add" method="post">
用户ID<input type="text" name="id"><br>
用户名:<input type="text" name="username"><br>
密码:<input type="password" name="password"><br>
手机号:<input type="text" name="phone"><br>
角色:<input type="text" name="role" placeholder="学生/商家/管理员"><br>
<input type="submit" value="提交">
</form>
</body>
</html>