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.
67 lines
2.0 KiB
67 lines
2.0 KiB
3 years ago
|
<%--
|
||
|
Created by IntelliJ IDEA.
|
||
|
User: jhu
|
||
|
Date: 2020/10/20
|
||
|
Time: 15:30
|
||
|
To change this template use File | Settings | File Templates.
|
||
|
--%>
|
||
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>编辑用户信息</title>
|
||
|
<%@include file="/pages/common/header.jsp"%>
|
||
|
<style type="text/css">
|
||
|
h1 {
|
||
|
text-align: center;
|
||
|
margin-top: 200px;
|
||
|
}
|
||
|
|
||
|
h1 a {
|
||
|
color:red;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="header">
|
||
|
<img class="logo_img" alt="" src="static/img/logo1.jpg" >
|
||
|
<span class="wel_word">编辑用户信息</span>
|
||
|
<%@include file="/pages/common/manager_menu.jsp"%>
|
||
|
</div>
|
||
|
|
||
|
<div id="main">
|
||
|
<form action="manager/UserServlet" method="post">
|
||
|
<input type="hidden" name="pageNo" value="${param.pageNo}">
|
||
|
<input type="hidden" name="action" value="${empty param.id ? "add":"update"}"/>
|
||
|
<input type="hidden" name="id" value="${requestScope.user.id}"/>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td>序号</td>
|
||
|
<td>用户名</td>
|
||
|
<td>密码</td>
|
||
|
<td>电子邮箱</td>
|
||
|
<td>收货地址</td>
|
||
|
<td colspan="2">操作</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td><input name="id" type="text" value="${requestScope.user.id}"/></td>
|
||
|
<td><input name="username" type="text" value="${requestScope.user.username}"/></td>
|
||
|
<td><input name="password" type="text" value="${requestScope.user.password}"/></td>
|
||
|
<td><input name="email" type="text" value="${requestScope.user.email}"/></td>
|
||
|
<td><input name="address" type="text" value="${requestScope.user.address}"/></td>
|
||
|
<td><input type="submit" value="提交"/></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<%@include file="/pages/common/footer.jsp"%>
|
||
|
</body>
|
||
|
</html>
|