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.
53 lines
1.5 KiB
53 lines
1.5 KiB
4 weeks ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>用户信息管理</title>
|
||
|
<link rel="stylesheet" href="/stylesheets/main.css">
|
||
|
<link rel="stylesheet" href="/stylesheets/form.css">
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||
|
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
|
||
|
<script type="text/javascript" src="/js/jquery.min.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="content">
|
||
|
<h1>用户信息管理</h1>
|
||
|
<form action="/xiugai1" method="post">
|
||
|
<div>
|
||
|
<label for="name">用户名:</label>
|
||
|
<input type="text" name="name" id="name" />
|
||
|
</div>
|
||
|
<div class="button">
|
||
|
<button type="submit">确认修改</button>
|
||
|
<button type="cancel">取消</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
<form action="/xiugai2" method="post">
|
||
|
<div>
|
||
|
<label for="name">密码:</label>
|
||
|
<input type="text" name="pwd" id="pwd" />
|
||
|
</div>
|
||
|
<div class="button">
|
||
|
<button type="submit">确认修改</button>
|
||
|
<button type="cancel">取消</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
<h1><%= xiugai_success %></h1>
|
||
|
<br /><br /><br /><br />
|
||
|
<form action="/zhuxiao" method="post" >
|
||
|
<button type="submit" onclick="myFunction1()">
|
||
|
注销
|
||
|
</button>
|
||
|
<script>
|
||
|
function myFunction1() {
|
||
|
alert("确认注销用户?");
|
||
|
}
|
||
|
</script>
|
||
|
<br /><br /><br /><br />
|
||
|
</form>
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|