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>
<form action="user/add" method="post">
<table>
<tr>
<td>车主id: </td>
<td width="20"></td>
<td><input type="text" name="userid" placeholder="请输入用户id" /></td>
</tr>
<tr>
<td>车主名:</td>
<td width="20"></td>
<td><input type="text" name="username" placeholder="请输入用户名" /></td>
</tr>
<tr>
<td>密码:</td>
<td width="20"></td>
<td><input type="password" name="user_pwd" placeholder="请输入密码" /></td>
</tr>
<tr>
<td>车主电话:</td>
<td width="20"></td>
<td><input type="text" name="user_phone" placeholder="请输入用户电话" /></td>
</tr>
<tr>
<td align="right"><input type="reset" value="重置"></td>
<td align="center"><input type="submit" value="添加"></td>
</tr>
</table>
</form>
</body>
</html>