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
699 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: 29810
Date: 2026/4/28
Time: 10:09
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="addUser" method="post">
用户ID<input type="text" name="id"><br><br>
用户名:<input type="text" name="username"><br><br>
密码:<input type="password" name="userpass"><br><br>
真实姓名:<input type="text" name="truename"><br><br>
手机号:<input type="text" name="phone"><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>